diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemBrewingStand.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/Items/ItemBrewingStand.h b/src/Items/ItemBrewingStand.h index 7be57763c..fdf53ff8f 100644 --- a/src/Items/ItemBrewingStand.h +++ b/src/Items/ItemBrewingStand.h @@ -7,12 +7,15 @@ -class cItemBrewingStandHandler : +class cItemBrewingStandHandler: public cItemHandler { + using Super = cItemHandler; + public: - cItemBrewingStandHandler(int a_ItemType) : - cItemHandler(a_ItemType) + + cItemBrewingStandHandler(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 { |