summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemRottenFlesh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemRottenFlesh.h')
-rw-r--r--src/Items/ItemRottenFlesh.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/Items/ItemRottenFlesh.h b/src/Items/ItemRottenFlesh.h
index 9eb7f2119..0ec30ecf4 100644
--- a/src/Items/ItemRottenFlesh.h
+++ b/src/Items/ItemRottenFlesh.h
@@ -7,14 +7,12 @@
-class cItemRottenFleshHandler final:
- public cItemFoodHandler
+class cItemRottenFleshHandler final : public cItemFoodHandler
{
using Super = cItemFoodHandler;
-public:
-
- constexpr cItemRottenFleshHandler(int a_ItemType):
+ public:
+ constexpr cItemRottenFleshHandler(int a_ItemType) :
Super(a_ItemType, FoodInfo(4, 0.8))
{
}
@@ -33,5 +31,4 @@ public:
return true;
}
-
};