diff options
Diffstat (limited to 'src/Blocks/BlockBrewingStand.h')
-rw-r--r-- | src/Blocks/BlockBrewingStand.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/src/Blocks/BlockBrewingStand.h b/src/Blocks/BlockBrewingStand.h index d1595c690..cd1f911ac 100644 --- a/src/Blocks/BlockBrewingStand.h +++ b/src/Blocks/BlockBrewingStand.h @@ -7,17 +7,14 @@ -class cBlockBrewingStandHandler final : - public cBlockEntityHandler +class cBlockBrewingStandHandler 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_BREWING_STAND); // We have to drop the item form of a brewing stand @@ -32,8 +29,4 @@ private: UNUSED(a_Meta); return 6; } -} ; - - - - +}; |