diff options
Diffstat (limited to '')
-rw-r--r-- | source/Items/ItemHoe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Items/ItemHoe.h b/source/Items/ItemHoe.h index bd39b7287..58f989341 100644 --- a/source/Items/ItemHoe.h +++ b/source/Items/ItemHoe.h @@ -14,7 +14,7 @@ public: }
- virtual bool OnItemUse(cWorld *a_World, cPlayer *a_Player, cItem *a_Item, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Dir) override
+ virtual bool OnItemUse(cWorld *a_World, cPlayer *a_Player, const cItem & a_Item, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Dir) override
{
BLOCKTYPE Block = a_World->GetBlock(a_BlockX, a_BlockY, a_BlockZ);
|