diff options
author | madmaxoft <github@xoft.cz> | 2014-04-04 09:56:57 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-04-04 09:56:57 +0200 |
commit | 402d85d896c793644681c4bb2934a7e0abb5ed8c (patch) | |
tree | 1cf3fa3d08cf88829695f8d063e3132be3f9e9b9 /src/Blocks/BlockSign.h | |
parent | ProtoProxy: Fixed a few Clang and MSVC warnings. (diff) | |
download | cuberite-402d85d896c793644681c4bb2934a7e0abb5ed8c.tar cuberite-402d85d896c793644681c4bb2934a7e0abb5ed8c.tar.gz cuberite-402d85d896c793644681c4bb2934a7e0abb5ed8c.tar.bz2 cuberite-402d85d896c793644681c4bb2934a7e0abb5ed8c.tar.lz cuberite-402d85d896c793644681c4bb2934a7e0abb5ed8c.tar.xz cuberite-402d85d896c793644681c4bb2934a7e0abb5ed8c.tar.zst cuberite-402d85d896c793644681c4bb2934a7e0abb5ed8c.zip |
Diffstat (limited to 'src/Blocks/BlockSign.h')
-rw-r--r-- | src/Blocks/BlockSign.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockSign.h b/src/Blocks/BlockSign.h index 6c0becfd6..9d6fede21 100644 --- a/src/Blocks/BlockSign.h +++ b/src/Blocks/BlockSign.h @@ -31,7 +31,7 @@ public: } - static char RotationToMetaData(double a_Rotation) + static NIBBLETYPE RotationToMetaData(double a_Rotation) { a_Rotation += 180 + (180 / 16); // So it's not aligned with axis if (a_Rotation > 360) @@ -45,7 +45,7 @@ public: } - static char DirectionToMetaData(eBlockFace a_Direction) + static NIBBLETYPE DirectionToMetaData(eBlockFace a_Direction) { switch (a_Direction) { |