summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemSpiderEye.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemSpiderEye.h')
-rw-r--r--src/Items/ItemSpiderEye.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/Items/ItemSpiderEye.h b/src/Items/ItemSpiderEye.h
index 63631e30c..0f420d1b9 100644
--- a/src/Items/ItemSpiderEye.h
+++ b/src/Items/ItemSpiderEye.h
@@ -7,14 +7,12 @@
-class cItemSpiderEyeHandler final:
- public cItemFoodHandler
+class cItemSpiderEyeHandler final : public cItemFoodHandler
{
using Super = cItemFoodHandler;
-public:
-
- constexpr cItemSpiderEyeHandler(int a_ItemType):
+ public:
+ constexpr cItemSpiderEyeHandler(int a_ItemType) :
Super(a_ItemType, FoodInfo(2, 3.2))
{
}
@@ -30,5 +28,4 @@ public:
return true;
}
-
};