summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockEnderchest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blocks/BlockEnderchest.h')
-rw-r--r--src/Blocks/BlockEnderchest.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/Blocks/BlockEnderchest.h b/src/Blocks/BlockEnderchest.h
deleted file mode 100644
index aae16ccec..000000000
--- a/src/Blocks/BlockEnderchest.h
+++ /dev/null
@@ -1,44 +0,0 @@
-
-#pragma once
-
-#include "Mixins.h"
-
-
-
-
-class cBlockEnderchestHandler final :
- public cYawRotator<cBlockEntityHandler, 0x07, 0x03, 0x04, 0x02, 0x05>
-{
- using Super = cYawRotator<cBlockEntityHandler, 0x07, 0x03, 0x04, 0x02, 0x05>;
-
-public:
-
- using Super::Super;
-
-private:
-
- virtual cItems ConvertToPickups(const NIBBLETYPE a_BlockMeta, const cItem * const a_Tool) const override
- {
- // Only drop something when mined with a pickaxe:
- if (
- (a_Tool != nullptr) &&
- ItemCategory::IsPickaxe(a_Tool->m_ItemType)
- )
- {
- // Only drop self when mined with a silk-touch pickaxe:
- if (a_Tool->m_Enchantments.GetLevel(cEnchantments::enchSilkTouch) > 0)
- {
- return cItem(E_BLOCK_ENDER_CHEST);
- }
-
- return cItem(E_BLOCK_OBSIDIAN, 8);
- }
-
- return {};
- }
-
-};
-
-
-
-