diff options
Diffstat (limited to 'src/Items/ItemCauldron.h')
-rw-r--r-- | src/Items/ItemCauldron.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemCauldron.h b/src/Items/ItemCauldron.h index 4cc222bec..9617c30ef 100644 --- a/src/Items/ItemCauldron.h +++ b/src/Items/ItemCauldron.h @@ -17,7 +17,7 @@ public: } - virtual bool IsPlaceable(void) /*override*/ + virtual bool IsPlaceable(void) override { return true; } @@ -28,7 +28,7 @@ public: int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta - ) /*override*/ + ) override { a_BlockType = E_BLOCK_CAULDRON; a_BlockMeta = 0; |