diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-11 13:08:09 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-11 13:08:09 +0200 |
commit | e7ecd78312d40ae7a12bd2cd55c42e6bdf6932c3 (patch) | |
tree | c82aead42341e0e8c2d51dd6eb7166942e120374 /source/Blocks | |
parent | Further attempt at fixing torch placements (diff) | |
download | cuberite-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 |
Diffstat (limited to '')
-rw-r--r-- | source/Blocks/BlockTorch.h | 2 |
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 { |