diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-03-07 19:42:13 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-03-07 19:42:13 +0100 |
commit | 7f389522ef1f40e847a4a7828ad55e50c0151b00 (patch) | |
tree | 0846dcf86adfca98b823a8888224f630de5bf9dd /src/Blocks/BlockStairs.h | |
parent | Fixed warnings (diff) | |
download | cuberite-7f389522ef1f40e847a4a7828ad55e50c0151b00.tar cuberite-7f389522ef1f40e847a4a7828ad55e50c0151b00.tar.gz cuberite-7f389522ef1f40e847a4a7828ad55e50c0151b00.tar.bz2 cuberite-7f389522ef1f40e847a4a7828ad55e50c0151b00.tar.lz cuberite-7f389522ef1f40e847a4a7828ad55e50c0151b00.tar.xz cuberite-7f389522ef1f40e847a4a7828ad55e50c0151b00.tar.zst cuberite-7f389522ef1f40e847a4a7828ad55e50c0151b00.zip |
Diffstat (limited to 'src/Blocks/BlockStairs.h')
-rw-r--r-- | src/Blocks/BlockStairs.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Blocks/BlockStairs.h b/src/Blocks/BlockStairs.h index c1887bc46..93035b3b1 100644 --- a/src/Blocks/BlockStairs.h +++ b/src/Blocks/BlockStairs.h @@ -25,6 +25,14 @@ public: BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta ) override { + UNUSED(a_ChunkInterface); + UNUSED(a_BlockX); + UNUSED(a_BlockY); + UNUSED(a_BlockZ); + UNUSED(a_CursorX); + UNUSED(a_CursorY); + UNUSED(a_CursorZ); + UNUSED(a_BlockMeta); a_BlockType = m_BlockType; a_BlockMeta = RotationToMetaData(a_Player->GetYaw()); switch (a_BlockFace) |