summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockRedstoneRepeater.h
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.h
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.h')
-rw-r--r--source/Blocks/BlockRedstoneRepeater.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/Blocks/BlockRedstoneRepeater.h b/source/Blocks/BlockRedstoneRepeater.h
index 24250ab86..21f227332 100644
--- a/source/Blocks/BlockRedstoneRepeater.h
+++ b/source/Blocks/BlockRedstoneRepeater.h
@@ -36,6 +36,15 @@ public:
{
return ((a_RelY > 0) && (a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) != E_BLOCK_AIR));
}
+
+
+ virtual bool 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
+ ) override;
+
virtual const char * GetStepSound(void) override
{