summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemVine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemVine.h')
-rw-r--r--src/Items/ItemVine.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/Items/ItemVine.h b/src/Items/ItemVine.h
deleted file mode 100644
index be5cf4588..000000000
--- a/src/Items/ItemVine.h
+++ /dev/null
@@ -1,44 +0,0 @@
-
-#pragma once
-
-#include "ItemHandler.h"
-
-
-
-
-
-class cItemVineHandler 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
- {
- BLOCKTYPE Block;
- NIBBLETYPE Meta;
- a_Player.GetWorld()->GetBlockTypeMeta(a_PlacePosition, Block, Meta);
-
- NIBBLETYPE PlaceMeta;
- switch (a_ClickedBlockFace)
- {
- case BLOCK_FACE_NORTH: PlaceMeta = 0x1; break;
- case BLOCK_FACE_SOUTH: PlaceMeta = 0x4; break;
- case BLOCK_FACE_WEST: PlaceMeta = 0x8; break;
- case BLOCK_FACE_EAST: PlaceMeta = 0x2; break;
- default: return false;
- }
-
- if (Block == E_BLOCK_VINES)
- {
- PlaceMeta |= Meta;
- }
-
- return a_Player.PlaceBlock(a_PlacePosition, E_BLOCK_VINES, PlaceMeta);
- }
-};