diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemCauldron.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/Items/ItemCauldron.h b/src/Items/ItemCauldron.h index 9617c30ef..7f2ccdeac 100644 --- a/src/Items/ItemCauldron.h +++ b/src/Items/ItemCauldron.h @@ -7,12 +7,15 @@ -class cItemCauldronHandler : +class cItemCauldronHandler: public cItemHandler { + using Super = cItemHandler; + public: - cItemCauldronHandler(int a_ItemType) : - cItemHandler(a_ItemType) + + cItemCauldronHandler(int a_ItemType): + Super(a_ItemType) { } @@ -25,8 +28,9 @@ public: virtual bool GetPlacementBlockTypeMeta( cWorld * a_World, cPlayer * a_Player, - int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, - int a_CursorX, int a_CursorY, int a_CursorZ, + const Vector3i a_PlacedBlockPos, + eBlockFace a_ClickedBlockFace, + const Vector3i a_CursorPos, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta ) override { |