diff options
author | Alexander Harkness <me@bearbin.net> | 2014-10-23 09:07:20 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2014-10-23 09:07:20 +0200 |
commit | 57f822cd0ed728dc37716c99352c20dfaf2e8caa (patch) | |
tree | f5521ffdb1766765aa6455b013c097dbad21a68c /src | |
parent | Merge pull request #1559 from mc-server/nullptr (diff) | |
download | cuberite-57f822cd0ed728dc37716c99352c20dfaf2e8caa.tar cuberite-57f822cd0ed728dc37716c99352c20dfaf2e8caa.tar.gz cuberite-57f822cd0ed728dc37716c99352c20dfaf2e8caa.tar.bz2 cuberite-57f822cd0ed728dc37716c99352c20dfaf2e8caa.tar.lz cuberite-57f822cd0ed728dc37716c99352c20dfaf2e8caa.tar.xz cuberite-57f822cd0ed728dc37716c99352c20dfaf2e8caa.tar.zst cuberite-57f822cd0ed728dc37716c99352c20dfaf2e8caa.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockSignPost.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Blocks/BlockSignPost.h b/src/Blocks/BlockSignPost.h index 40e15c253..d97501651 100644 --- a/src/Blocks/BlockSignPost.h +++ b/src/Blocks/BlockSignPost.h @@ -35,7 +35,7 @@ public: } BLOCKTYPE Type = a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ); - return ((Type == E_BLOCK_SIGN_POST) || cBlockInfo::IsSolid(Type)); + return ((Type == E_BLOCK_SIGN_POST) || (Type == E_BLOCK_WALLSIGN) || cBlockInfo::IsSolid(Type)); } |