summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemEnderchest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemEnderchest.h')
-rw-r--r--src/Items/ItemEnderchest.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/Items/ItemEnderchest.h b/src/Items/ItemEnderchest.h
deleted file mode 100644
index bd8487b11..000000000
--- a/src/Items/ItemEnderchest.h
+++ /dev/null
@@ -1,26 +0,0 @@
-
-#pragma once
-
-#include "ItemHandler.h"
-#include "Blocks/BlockEnderchest.h"
-
-
-
-
-
-class cItemEnderchestHandler final :
- public cItemHandler
-{
- using Super = cItemHandler;
-
-public:
-
- using Super::Super;
-
-private:
-
- virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, const eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) const override
- {
- return a_Player.PlaceBlock(a_PlacePosition, E_BLOCK_ENDER_CHEST, cBlockEnderchestHandler::YawToMetaData(a_Player.GetYaw()));
- }
-};