summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockEnderchest.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2022-01-02 12:56:36 +0100
committerGitHub <noreply@github.com>2022-01-02 12:56:36 +0100
commitc52f299e724bf893944553ac3aeedf7bf0a58241 (patch)
tree071ed4a45a7054231f60a9dd705dc4d69d10e6c6 /src/Blocks/BlockEnderchest.h
parentWriteBlockEntity: don't write position multiple times (#5373) (diff)
downloadcuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.gz
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.bz2
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.lz
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.xz
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.tar.zst
cuberite-c52f299e724bf893944553ac3aeedf7bf0a58241.zip
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 {};
- }
-
-};
-
-
-
-