summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2013-08-11 13:08:09 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-08-11 13:08:09 +0200
commite7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3 (patch)
treec82aead42341e0e8c2d51dd6eb7166942e120374
parentFurther attempt at fixing torch placements (diff)
downloadcuberite-e7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3.tar
cuberite-e7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3.tar.gz
cuberite-e7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3.tar.bz2
cuberite-e7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3.tar.lz
cuberite-e7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3.tar.xz
cuberite-e7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3.tar.zst
cuberite-e7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3.zip
-rw-r--r--source/Blocks/BlockTorch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Blocks/BlockTorch.h b/source/Blocks/BlockTorch.h
index 816d1b69f..ebff7b641 100644
--- a/source/Blocks/BlockTorch.h
+++ b/source/Blocks/BlockTorch.h
@@ -116,7 +116,7 @@ public:
//case E_BLOCK_NETHER_BRICK_FENCE:
//case E_BLOCK_PISTON:
//case E_BLOCK_IRON_BARS
- if ( g_BlockIsSolid[a_BlockType] {
+ if ( g_BlockIsSolid[a_BlockType] ) {
return (a_Direction == 0x1); // allow only direction "standing on floor"
}
else {