diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemPoisonousPotato.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Items/ItemPoisonousPotato.h b/src/Items/ItemPoisonousPotato.h index 8d2dd93e7..1950db90e 100644 --- a/src/Items/ItemPoisonousPotato.h +++ b/src/Items/ItemPoisonousPotato.h @@ -7,20 +7,21 @@ -class cItemPoisonousPotatoHandler : +class cItemPoisonousPotatoHandler: public cItemFoodHandler { - typedef cItemFoodHandler super; + using Super = cItemFoodHandler; public: - cItemPoisonousPotatoHandler() - : super(E_ITEM_POISONOUS_POTATO, FoodInfo(2, 1.2)) + + cItemPoisonousPotatoHandler(): + Super(E_ITEM_POISONOUS_POTATO, FoodInfo(2, 1.2)) { } virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) override { - if (!super::EatItem(a_Player, a_Item)) + if (!Super::EatItem(a_Player, a_Item)) { return false; } |