summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockRedstoneRepeater.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-09-18 08:09:35 +0200
committerMattes D <github@xoft.cz>2013-09-18 08:09:35 +0200
commitaa2edeae7754b6543cc0bd5a234f15d395da4c67 (patch)
treeef92d1a6f215c15deffc8f41139bdc8b3ccf26d5 /source/Blocks/BlockRedstoneRepeater.cpp
parentMerge pull request #175 from tigerw/bugfixes (diff)
parentMultiple fixes [SEE DESC] (diff)
downloadcuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.gz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.bz2
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.lz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.xz
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.tar.zst
cuberite-aa2edeae7754b6543cc0bd5a234f15d395da4c67.zip
Diffstat (limited to 'source/Blocks/BlockRedstoneRepeater.cpp')
-rw-r--r--source/Blocks/BlockRedstoneRepeater.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/Blocks/BlockRedstoneRepeater.cpp b/source/Blocks/BlockRedstoneRepeater.cpp
index 3bc879435..5e491ee5a 100644
--- a/source/Blocks/BlockRedstoneRepeater.cpp
+++ b/source/Blocks/BlockRedstoneRepeater.cpp
@@ -4,6 +4,7 @@
#include "../Item.h"
#include "../World.h"
#include "../Simulator/RedstoneSimulator.h"
+#include "../Entities/Player.h"
@@ -44,3 +45,18 @@ void cBlockRedstoneRepeaterHandler::OnDigging(cWorld *a_World, cPlayer *a_Player
+bool cBlockRedstoneRepeaterHandler::GetPlacementBlockTypeMeta(
+ cWorld * a_World, cPlayer * a_Player,
+ int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace,
+ int a_CursorX, int a_CursorY, int a_CursorZ,
+ BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
+)
+{
+ a_BlockType = m_BlockType;
+ a_BlockMeta = cRedstoneSimulator::RepeaterRotationToMetaData(a_Player->GetRotation());
+ return true;
+}
+
+
+
+