1
0

Merge pull request #1562 from mc-server/signplace

Signs can be placed on wallsigns.
This commit is contained in:
Mattes D 2014-10-23 09:46:51 +02:00
commit ed7a0332f6

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