summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockBrewingStand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blocks/BlockBrewingStand.h')
-rw-r--r--src/Blocks/BlockBrewingStand.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/Blocks/BlockBrewingStand.h b/src/Blocks/BlockBrewingStand.h
index 3445a0f5a..48158ef73 100644
--- a/src/Blocks/BlockBrewingStand.h
+++ b/src/Blocks/BlockBrewingStand.h
@@ -2,28 +2,27 @@
#pragma once
#include "BlockEntity.h"
-#include "MetaRotator.h"
+#include "Mixins.h"
+
+
class cBlockBrewingStandHandler :
- public cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>
+ public cClearMetaOnDrop<cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>>
{
+ using super = cClearMetaOnDrop<cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>>;
+
public:
- cBlockBrewingStandHandler(BLOCKTYPE a_BlockType)
- : cMetaRotator<cBlockEntityHandler, 0x07, 0x02, 0x05, 0x03, 0x04>(a_BlockType)
- {
- }
- virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
+ cBlockBrewingStandHandler(BLOCKTYPE a_BlockType):
+ super(a_BlockType)
{
- a_Pickups.push_back(cItem(E_ITEM_BREWING_STAND, 1, 0));
}
- virtual bool IsUseable() override
- {
- return true;
- }
+
+
+
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
{