diff options
Diffstat (limited to 'src/Items/ItemSeeds.h')
-rw-r--r-- | src/Items/ItemSeeds.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Items/ItemSeeds.h b/src/Items/ItemSeeds.h index 54a1183d7..249966531 100644 --- a/src/Items/ItemSeeds.h +++ b/src/Items/ItemSeeds.h @@ -18,12 +18,12 @@ public: } - virtual bool IsPlaceable(void) override + virtual bool IsPlaceable(void) /*override*/ { return true; } - virtual bool IsFood(void) override + virtual bool IsFood(void) /*override*/ { switch (m_ItemType) // Special cases, both a seed and food { @@ -33,7 +33,7 @@ public: } } - virtual FoodInfo GetFoodInfo(void) override + virtual FoodInfo GetFoodInfo(void) /*override*/ { switch (m_ItemType) { @@ -48,7 +48,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*/ { if (a_BlockFace != BLOCK_FACE_TOP) { |