diff options
Diffstat (limited to 'src/Items/ItemSoup.h')
-rw-r--r-- | src/Items/ItemSoup.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Items/ItemSoup.h b/src/Items/ItemSoup.h index 60a2f8d76..974a410a8 100644 --- a/src/Items/ItemSoup.h +++ b/src/Items/ItemSoup.h @@ -8,20 +8,20 @@ -class cItemSoupHandler: +class cItemSoupHandler final: public cItemFoodHandler { using Super = cItemFoodHandler; public: - cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo): + constexpr cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo): Super(a_ItemType, a_FoodInfo) { } - virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) override + virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) const override { // Skip over food handler, which does removal for us. if (!cItemHandler::EatItem(a_Player, a_Item)) |