diff options
author | Julian Laubstein <julianlaubstein@yahoo.de> | 2014-09-30 12:45:44 +0200 |
---|---|---|
committer | Julian Laubstein <julianlaubstein@yahoo.de> | 2014-09-30 12:45:44 +0200 |
commit | b2cf4004f8e198d4528981468e59ba276bffe986 (patch) | |
tree | c95464ff385e8ac725b4445ad1865905eef00d97 /src/Blocks/BlockTorch.h | |
parent | actual solving of the halfslap+torch problem (diff) | |
download | cuberite-b2cf4004f8e198d4528981468e59ba276bffe986.tar cuberite-b2cf4004f8e198d4528981468e59ba276bffe986.tar.gz cuberite-b2cf4004f8e198d4528981468e59ba276bffe986.tar.bz2 cuberite-b2cf4004f8e198d4528981468e59ba276bffe986.tar.lz cuberite-b2cf4004f8e198d4528981468e59ba276bffe986.tar.xz cuberite-b2cf4004f8e198d4528981468e59ba276bffe986.tar.zst cuberite-b2cf4004f8e198d4528981468e59ba276bffe986.zip |
Diffstat (limited to '')
-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 3280aef36..f7973a607 100644 --- a/src/Blocks/BlockTorch.h +++ b/src/Blocks/BlockTorch.h @@ -165,9 +165,9 @@ public: (BlockInQuestion == E_BLOCK_MOB_SPAWNER) || (BlockInQuestion == E_BLOCK_END_PORTAL_FRAME) || // Actual vanilla behaviour (BlockInQuestion == E_BLOCK_NETHER_BRICK_FENCE) || - (BlockInQuestion == E_BLOCK_COBBLESTONE_WALL) || - (BlockInQuestion == E_BLOCK_STONE_SLAB) || - (BlockInQuestion == E_BLOCK_WOODEN_SLAB) + (BlockInQuestion == E_BLOCK_COBBLESTONE_WALL) || + (BlockInQuestion == E_BLOCK_STONE_SLAB) || + (BlockInQuestion == E_BLOCK_WOODEN_SLAB) ) { // Torches can be placed on tops of glass and fences, despite them being 'untorcheable' |