diff options
Diffstat (limited to 'src/Items/ItemSeeds.h')
-rw-r--r-- | src/Items/ItemSeeds.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Items/ItemSeeds.h b/src/Items/ItemSeeds.h index a04ab3c05..8338d1060 100644 --- a/src/Items/ItemSeeds.h +++ b/src/Items/ItemSeeds.h @@ -23,27 +23,6 @@ public: return true; } - virtual bool IsFood(void) override - { - switch (m_ItemType) // Special cases, both a seed and food - { - case E_ITEM_CARROT: - case E_ITEM_POTATO: return true; - default: return false; - } - } - - virtual FoodInfo GetFoodInfo(const cItem * a_Item) override - { - UNUSED(a_Item); - switch (m_ItemType) - { - case E_ITEM_CARROT: return FoodInfo(3, 3.6); - case E_ITEM_POTATO: return FoodInfo(1, 0.6); - default: return FoodInfo(0, 0); - } - } - virtual bool GetPlacementBlockTypeMeta( cWorld * a_World, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, |