summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockStairs.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-03-09 15:04:12 +0100
committerMattes D <github@xoft.cz>2014-03-09 15:04:12 +0100
commit8a715db41f53dbf0ae838e7386d409fd8274e0ae (patch)
tree0ea2410e2775a93f1a97c2ff92a6c6deca9f55f1 /src/Blocks/BlockStairs.h
parentUpdated Core (diff)
parentFIxed int in test (diff)
downloadcuberite-8a715db41f53dbf0ae838e7386d409fd8274e0ae.tar
cuberite-8a715db41f53dbf0ae838e7386d409fd8274e0ae.tar.gz
cuberite-8a715db41f53dbf0ae838e7386d409fd8274e0ae.tar.bz2
cuberite-8a715db41f53dbf0ae838e7386d409fd8274e0ae.tar.lz
cuberite-8a715db41f53dbf0ae838e7386d409fd8274e0ae.tar.xz
cuberite-8a715db41f53dbf0ae838e7386d409fd8274e0ae.tar.zst
cuberite-8a715db41f53dbf0ae838e7386d409fd8274e0ae.zip
Diffstat (limited to 'src/Blocks/BlockStairs.h')
-rw-r--r--src/Blocks/BlockStairs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Blocks/BlockStairs.h b/src/Blocks/BlockStairs.h
index bbbe0ee84..ea8405597 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)