summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockFlowerPot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blocks/BlockFlowerPot.h')
-rw-r--r--src/Blocks/BlockFlowerPot.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/Blocks/BlockFlowerPot.h b/src/Blocks/BlockFlowerPot.h
index 3e12e2d02..b5c1d785e 100644
--- a/src/Blocks/BlockFlowerPot.h
+++ b/src/Blocks/BlockFlowerPot.h
@@ -5,17 +5,14 @@
-class cBlockFlowerPotHandler final :
- public cBlockEntityHandler
+class cBlockFlowerPotHandler final : public cBlockEntityHandler
{
using Super = cBlockEntityHandler;
-public:
-
+ public:
using Super::Super;
-private:
-
+ private:
virtual cItems ConvertToPickups(const NIBBLETYPE a_BlockMeta, const cItem * const a_Tool) const override
{
return cItem(E_ITEM_FLOWER_POT, 1, 0);
@@ -30,8 +27,4 @@ private:
UNUSED(a_Meta);
return 0;
}
-} ;
-
-
-
-
+};