summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemGoldenApple.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemGoldenApple.h')
-rw-r--r--src/Items/ItemGoldenApple.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/Items/ItemGoldenApple.h b/src/Items/ItemGoldenApple.h
index 25ed284e6..9bcc210d8 100644
--- a/src/Items/ItemGoldenApple.h
+++ b/src/Items/ItemGoldenApple.h
@@ -7,14 +7,12 @@
-class cItemGoldenAppleHandler final:
- public cItemFoodHandler
+class cItemGoldenAppleHandler final : public cItemFoodHandler
{
using Super = cItemFoodHandler;
-public:
-
- constexpr cItemGoldenAppleHandler(int a_ItemType):
+ public:
+ constexpr cItemGoldenAppleHandler(int a_ItemType) :
Super(a_ItemType, FoodInfo(4, 9.6))
{
}
@@ -43,5 +41,4 @@ public:
return true;
}
-
};