From e475c61a442c96b87f5f22537f18932585acac10 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Mon, 20 May 2013 19:48:05 +0000 Subject: 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 --- source/Blocks/BlockStairs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/Blocks') diff --git a/source/Blocks/BlockStairs.h b/source/Blocks/BlockStairs.h index 9f135b37d..c85d07c00 100644 --- a/source/Blocks/BlockStairs.h +++ b/source/Blocks/BlockStairs.h @@ -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; } -- cgit v1.2.3