1
0
Fork 0

Signs can be placed on wallsigns.

Fixes #1438
This commit is contained in:
Alexander Harkness 2014-10-23 08:07:20 +01:00
parent 4bfd2c9707
commit 57f822cd0e
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}