summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockRedstoneRepeater.cpp
diff options
context:
space:
mode:
authorSTRWarrior <q1w2e3r4>2013-09-18 12:06:03 +0200
committerSTRWarrior <q1w2e3r4>2013-09-18 12:06:03 +0200
commitf31436d5ca4f486ef7814acbd7a0b5773731544a (patch)
tree74b03015bf8b48bbdcf66a93b89bdf2709c9b075 /source/Blocks/BlockRedstoneRepeater.cpp
parentAPIDump: Small cRoot improvement. (diff)
parentMerge pull request #176 from tigerw/bugfixes (diff)
downloadcuberite-f31436d5ca4f486ef7814acbd7a0b5773731544a.tar
cuberite-f31436d5ca4f486ef7814acbd7a0b5773731544a.tar.gz
cuberite-f31436d5ca4f486ef7814acbd7a0b5773731544a.tar.bz2
cuberite-f31436d5ca4f486ef7814acbd7a0b5773731544a.tar.lz
cuberite-f31436d5ca4f486ef7814acbd7a0b5773731544a.tar.xz
cuberite-f31436d5ca4f486ef7814acbd7a0b5773731544a.tar.zst
cuberite-f31436d5ca4f486ef7814acbd7a0b5773731544a.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;
+}
+
+
+
+