summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemSoup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemSoup.h')
-rw-r--r--src/Items/ItemSoup.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Items/ItemSoup.h b/src/Items/ItemSoup.h
index 974a410a8..9d0f5f36f 100644
--- a/src/Items/ItemSoup.h
+++ b/src/Items/ItemSoup.h
@@ -8,17 +8,14 @@
-class cItemSoupHandler final:
- public cItemFoodHandler
+class cItemSoupHandler final : public cItemFoodHandler
{
using Super = cItemFoodHandler;
-public:
-
- constexpr cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo):
+ public:
+ constexpr cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo) :
Super(a_ItemType, a_FoodInfo)
{
-
}
virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) const override
@@ -36,5 +33,4 @@ public:
return true;
}
-
};