diff options
author | Alexander Harkness <me@bearbin.net> | 2024-11-02 22:27:47 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2024-11-02 22:27:47 +0100 |
commit | cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a (patch) | |
tree | f647b20e1823f1846af88e832cf82a4a02e96e69 /src/Items/ItemChorusFruit.h | |
parent | Improve clang-format config file, remove automatically enforced code style from contrib guide. (diff) | |
download | cuberite-clang-format-codebase.tar cuberite-clang-format-codebase.tar.gz cuberite-clang-format-codebase.tar.bz2 cuberite-clang-format-codebase.tar.lz cuberite-clang-format-codebase.tar.xz cuberite-clang-format-codebase.tar.zst cuberite-clang-format-codebase.zip |
Diffstat (limited to 'src/Items/ItemChorusFruit.h')
-rw-r--r-- | src/Items/ItemChorusFruit.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Items/ItemChorusFruit.h b/src/Items/ItemChorusFruit.h index d60c2730f..077752099 100644 --- a/src/Items/ItemChorusFruit.h +++ b/src/Items/ItemChorusFruit.h @@ -8,13 +8,11 @@ -class cItemChorusFruitHandler final: - public cItemFoodHandler +class cItemChorusFruitHandler final : public cItemFoodHandler { using Super = cItemFoodHandler; -public: - + public: constexpr cItemChorusFruitHandler(int a_ItemType) : Super(a_ItemType, FoodInfo(4, 2.4)) { @@ -40,5 +38,4 @@ public: } return true; } - }; |