1
0

Stairs placement fix (patch contributed by Simi)

http://forum.mc-server.org/showthread.php?tid=503&pid=8159#pid8159

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1497 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com 2013-05-20 19:48:05 +00:00
parent aa9e0c5aa0
commit e475c61a44

View File

@ -38,7 +38,7 @@ public:
case BLOCK_FACE_WEST:
{
// When placing onto a sideways face, check cursor, if in top half, make it an upside-down stairs block
if (a_CursorY < 8)
if (a_CursorY > 8)
{
a_BlockMeta |= 0x4;
}