summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemRawChicken.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemRawChicken.h')
-rw-r--r--src/Items/ItemRawChicken.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Items/ItemRawChicken.h b/src/Items/ItemRawChicken.h
index 95acd3194..f3522b449 100644
--- a/src/Items/ItemRawChicken.h
+++ b/src/Items/ItemRawChicken.h
@@ -7,19 +7,19 @@
-class cItemRawChickenHandler:
+class cItemRawChickenHandler final:
public cItemFoodHandler
{
using Super = cItemFoodHandler;
public:
- cItemRawChickenHandler():
- Super(E_ITEM_RAW_CHICKEN, FoodInfo(2, 1.2))
+ constexpr cItemRawChickenHandler(int a_ItemType):
+ Super(a_ItemType, FoodInfo(2, 1.2))
{
}
- virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) override
+ virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) const override
{
if (!Super::EatItem(a_Player, a_Item))
{