diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-20 21:48:05 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-20 21:48:05 +0200 |
commit | e475c61a442c96b87f5f22537f18932585acac10 (patch) | |
tree | 438fb8406ee781efd9248304032b39df952d9524 /source/Blocks | |
parent | Fixed linux compilation (diff) | |
download | cuberite-e475c61a442c96b87f5f22537f18932585acac10.tar cuberite-e475c61a442c96b87f5f22537f18932585acac10.tar.gz cuberite-e475c61a442c96b87f5f22537f18932585acac10.tar.bz2 cuberite-e475c61a442c96b87f5f22537f18932585acac10.tar.lz cuberite-e475c61a442c96b87f5f22537f18932585acac10.tar.xz cuberite-e475c61a442c96b87f5f22537f18932585acac10.tar.zst cuberite-e475c61a442c96b87f5f22537f18932585acac10.zip |
Diffstat (limited to 'source/Blocks')
-rw-r--r-- | source/Blocks/BlockStairs.h | 2 |
1 files changed, 1 insertions, 1 deletions
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;
}
|