diff options
Diffstat (limited to 'source/cPlugin.cpp')
-rw-r--r-- | source/cPlugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cPlugin.cpp b/source/cPlugin.cpp index 2b3825d2a..4bdebc859 100644 --- a/source/cPlugin.cpp +++ b/source/cPlugin.cpp @@ -118,10 +118,10 @@ bool cPlugin::OnChunkGenerating(cWorld * a_World, int a_ChunkX, int a_ChunkZ, cL -bool cPlugin::OnCollectItem(cPickup * a_Pickup, cPlayer * a_Player) +bool cPlugin::OnCollectPickup(cPlayer * a_Player, cPickup * a_Pickup) { - UNUSED(a_Pickup); UNUSED(a_Player); + UNUSED(a_Pickup); return false; } |