summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemMushroomSoup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemMushroomSoup.h')
-rw-r--r--src/Items/ItemMushroomSoup.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/Items/ItemMushroomSoup.h b/src/Items/ItemMushroomSoup.h
deleted file mode 100644
index 1a761cbf1..000000000
--- a/src/Items/ItemMushroomSoup.h
+++ /dev/null
@@ -1,53 +0,0 @@
-
-#pragma once
-
-#include "ItemHandler.h"
-
-
-
-
-
-class cItemMushroomSoupHandler :
- public cItemHandler
-{
- typedef cItemHandler super;
-
-public:
- cItemMushroomSoupHandler(int a_ItemType)
- : super(a_ItemType)
- {
- }
-
-
- virtual bool IsFood(void) override
- {
- return true;
- }
-
-
- virtual FoodInfo GetFoodInfo(void) override
- {
- return FoodInfo(6, 7.2);
- }
-
-
- virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) override
- {
- if (!super::EatItem(a_Player, a_Item))
- {
- return false;
- }
-
- // Return a bowl to the inventory
- if (!a_Player->IsGameModeCreative())
- {
- a_Player->GetInventory().AddItem(cItem(E_ITEM_BOWL));
- }
- return true;
- }
-
-};
-
-
-
-