diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemFlowerPot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemFlowerPot.h b/src/Items/ItemFlowerPot.h index 9fbc0e978..320dce997 100644 --- a/src/Items/ItemFlowerPot.h +++ b/src/Items/ItemFlowerPot.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_FLOWER_POT; a_BlockMeta = 0; |