Skip to content

Commit

Permalink
Signs can be placed on wallsigns.
Browse files Browse the repository at this point in the history
Fixes #1438
  • Loading branch information
bearbin committed Oct 23, 2014
1 parent 4bfd2c9 commit 57f822c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Blocks/BlockSignPost.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class cBlockSignPostHandler :
}
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));
}


Expand Down

0 comments on commit 57f822c

Please sign in to comment.