diff options
Diffstat (limited to '')
-rw-r--r-- | src/Defines.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/Defines.h b/src/Defines.h index f095069d9..0981077c4 100644 --- a/src/Defines.h +++ b/src/Defines.h @@ -470,7 +470,7 @@ inline void AddFaceDirection(int & a_BlockX, unsigned char & a_BlockY, int & a_B { int Y = a_BlockY; AddFaceDirection(a_BlockX, Y, a_BlockZ, a_BlockFace, a_bInverse); - a_BlockY = Clamp<unsigned char>(Y, 0, 255); + a_BlockY = Clamp<unsigned char>((unsigned char)Y, 0, 255); } @@ -715,14 +715,5 @@ namespace ItemCategory // tolua_end -inline bool BlockRequiresSpecialTool(BLOCKTYPE a_BlockType) -{ - if (!IsValidBlock(a_BlockType)) return false; - return cBlockInfo::RequiresSpecialTool(a_BlockType); -} - - - - |