diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-01-12 13:38:41 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-01-12 13:38:41 +0100 |
commit | 273db55bdfe789e18601417931dd89bd6cd94b83 (patch) | |
tree | 537a559bcd7f18e0aad2b853f223f06404309ee7 /src/Blocks/BlockTorch.h | |
parent | Merge pull request #533 from mc-server/CmakeMultiConfig (diff) | |
parent | Fixed rails powering (diff) | |
download | cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.gz cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.bz2 cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.lz cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.xz cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.zst cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.zip |
Diffstat (limited to 'src/Blocks/BlockTorch.h')
-rw-r--r-- | src/Blocks/BlockTorch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Blocks/BlockTorch.h b/src/Blocks/BlockTorch.h index 9e543dfd7..faba9c4f5 100644 --- a/src/Blocks/BlockTorch.h +++ b/src/Blocks/BlockTorch.h @@ -98,7 +98,7 @@ public: static bool CanBePlacedOn(BLOCKTYPE a_BlockType, char a_BlockFace) { - if ( !g_BlockIsTorchPlaceable[a_BlockType] ) + if ( !g_BlockFullyOccupiesVoxel[a_BlockType] ) { return (a_BlockFace == BLOCK_FACE_TOP); // Allow placement only when torch upright (for glass, etc.); exceptions won't even be sent by client, no need to handle } @@ -127,7 +127,7 @@ public: { return i; } - else if ((g_BlockIsTorchPlaceable[BlockInQuestion]) && (i != BLOCK_FACE_BOTTOM)) + else if ((g_BlockFullyOccupiesVoxel[BlockInQuestion]) && (i != BLOCK_FACE_BOTTOM)) { // Otherwise, if block in that direction is torch placeable and we haven't gotten to it via the bottom face, return that face return i; @@ -161,7 +161,7 @@ public: // No need to check for upright orientation, it was done when the torch was placed return true; } - else if ( !g_BlockIsTorchPlaceable[BlockInQuestion] ) + else if ( !g_BlockFullyOccupiesVoxel[BlockInQuestion] ) { return false; } |