diff options
author | STRWarrior <q1w2e3r4> | 2013-09-18 12:06:03 +0200 |
---|---|---|
committer | STRWarrior <q1w2e3r4> | 2013-09-18 12:06:03 +0200 |
commit | f31436d5ca4f486ef7814acbd7a0b5773731544a (patch) | |
tree | 74b03015bf8b48bbdcf66a93b89bdf2709c9b075 /source/Blocks/BlockRedstoneRepeater.h | |
parent | APIDump: Small cRoot improvement. (diff) | |
parent | Merge pull request #176 from tigerw/bugfixes (diff) | |
download | cuberite-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 '')
-rw-r--r-- | source/Blocks/BlockRedstoneRepeater.h | 9 |
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 { |