summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemFood.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-12-03 15:12:07 +0100
committerMattes D <github@xoft.cz>2015-12-03 15:12:07 +0100
commitef7c6ea7e7742223a705fe65c5ccff058b936e38 (patch)
tree731f128a18b2912cabb39f602c9db083a4ad8b33 /src/Items/ItemFood.h
parentMerge pull request #2711 from cuberite/FixFreeBSDBuild (diff)
parentMerge mushroom soup into generic food handler (diff)
downloadcuberite-ef7c6ea7e7742223a705fe65c5ccff058b936e38.tar
cuberite-ef7c6ea7e7742223a705fe65c5ccff058b936e38.tar.gz
cuberite-ef7c6ea7e7742223a705fe65c5ccff058b936e38.tar.bz2
cuberite-ef7c6ea7e7742223a705fe65c5ccff058b936e38.tar.lz
cuberite-ef7c6ea7e7742223a705fe65c5ccff058b936e38.tar.xz
cuberite-ef7c6ea7e7742223a705fe65c5ccff058b936e38.tar.zst
cuberite-ef7c6ea7e7742223a705fe65c5ccff058b936e38.zip
Diffstat (limited to 'src/Items/ItemFood.h')
-rw-r--r--src/Items/ItemFood.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Items/ItemFood.h b/src/Items/ItemFood.h
index e7c718c77..2fbbb2528 100644
--- a/src/Items/ItemFood.h
+++ b/src/Items/ItemFood.h
@@ -42,6 +42,7 @@ public:
// Golden apple handled in ItemGoldenApple
case E_ITEM_GOLDEN_CARROT: return FoodInfo(6, 14.4);
case E_ITEM_MELON_SLICE: return FoodInfo(2, 1.2);
+ case E_ITEM_MUSHROOM_SOUP: return FoodInfo(6, 7.2);
case E_ITEM_POISONOUS_POTATO: return FoodInfo(2, 1.2);
// Potatoes handled in ItemSeeds
case E_ITEM_PUMPKIN_PIE: return FoodInfo(8, 4.8);
@@ -101,6 +102,29 @@ public:
return false;
}
+ virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) override
+ {
+ if (!super::EatItem(a_Player, a_Item))
+ {
+ return false;
+ }
+
+ switch (m_ItemType)
+ {
+ case E_ITEM_MUSHROOM_SOUP:
+ case E_ITEM_RABBIT_STEW:
+ {
+ // Return a bowl to the inventory
+ if (!a_Player->IsGameModeCreative())
+ {
+ a_Player->GetInventory().AddItem(cItem(E_ITEM_BOWL));
+ }
+ break;
+ }
+ }
+ return true;
+ }
+
};