diff options
Diffstat (limited to 'src/Items/ItemPoisonousPotato.h')
-rw-r--r-- | src/Items/ItemPoisonousPotato.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/Items/ItemPoisonousPotato.h b/src/Items/ItemPoisonousPotato.h index 849633b5b..7e47f1713 100644 --- a/src/Items/ItemPoisonousPotato.h +++ b/src/Items/ItemPoisonousPotato.h @@ -7,14 +7,12 @@ -class cItemPoisonousPotatoHandler final: - public cItemFoodHandler +class cItemPoisonousPotatoHandler final : public cItemFoodHandler { using Super = cItemFoodHandler; -public: - - constexpr cItemPoisonousPotatoHandler(int a_ItemType): + public: + constexpr cItemPoisonousPotatoHandler(int a_ItemType) : Super(a_ItemType, FoodInfo(2, 1.2)) { } @@ -33,5 +31,4 @@ public: return true; } - }; |