summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-10-23 09:46:51 +0200
committerMattes D <github@xoft.cz>2014-10-23 09:46:51 +0200
commited7a0332f6ccca4c166191b24fedb9b60cf663ff (patch)
treef5521ffdb1766765aa6455b013c097dbad21a68c
parentMerge pull request #1559 from mc-server/nullptr (diff)
parentSigns can be placed on wallsigns. (diff)
downloadcuberite-ed7a0332f6ccca4c166191b24fedb9b60cf663ff.tar
cuberite-ed7a0332f6ccca4c166191b24fedb9b60cf663ff.tar.gz
cuberite-ed7a0332f6ccca4c166191b24fedb9b60cf663ff.tar.bz2
cuberite-ed7a0332f6ccca4c166191b24fedb9b60cf663ff.tar.lz
cuberite-ed7a0332f6ccca4c166191b24fedb9b60cf663ff.tar.xz
cuberite-ed7a0332f6ccca4c166191b24fedb9b60cf663ff.tar.zst
cuberite-ed7a0332f6ccca4c166191b24fedb9b60cf663ff.zip
-rw-r--r--src/Blocks/BlockSignPost.h2
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));
}