From 2b9474f171a4c0e1863b52ea585f145ddaabe404 Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Sat, 4 Apr 2020 15:13:41 +0000 Subject: Remove switch statements from cItemFoodHandler (#4610) * Remove switch statements from cItemFoodHandler * Alpha-sort and add comment * Relocate golden apple handler --- src/Items/ItemSeeds.h | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'src/Items/ItemSeeds.h') 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, -- cgit v1.2.3