summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2015-05-16 01:47:58 +0200
committertycho <work.tycho@gmail.com>2015-05-16 13:07:38 +0200
commit6350e4f279fa1d9cfe9436ccf209608543716471 (patch)
treefd224f049e34544152b434db745088b4f3396f2b
parentNewsletter, content tweak. (diff)
downloadcuberite-6350e4f279fa1d9cfe9436ccf209608543716471.tar
cuberite-6350e4f279fa1d9cfe9436ccf209608543716471.tar.gz
cuberite-6350e4f279fa1d9cfe9436ccf209608543716471.tar.bz2
cuberite-6350e4f279fa1d9cfe9436ccf209608543716471.tar.lz
cuberite-6350e4f279fa1d9cfe9436ccf209608543716471.tar.xz
cuberite-6350e4f279fa1d9cfe9436ccf209608543716471.tar.zst
cuberite-6350e4f279fa1d9cfe9436ccf209608543716471.zip
-rw-r--r--src/Blocks/BlockBed.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockBed.cpp b/src/Blocks/BlockBed.cpp
index e56f4bfe0..dfa392d9b 100644
--- a/src/Blocks/BlockBed.cpp
+++ b/src/Blocks/BlockBed.cpp
@@ -14,7 +14,7 @@ void cBlockBedHandler::OnDestroyed(cChunkInterface & a_ChunkInterface, cWorldInt
NIBBLETYPE OldMeta = a_ChunkInterface.GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ);
Vector3i ThisPos( a_BlockX, a_BlockY, a_BlockZ);
- Vector3i Direction = MetaDataToDirection( OldMeta & 0x7);
+ Vector3i Direction = MetaDataToDirection( OldMeta & 0x3);
if (OldMeta & 0x8)
{
// Was pillow
@@ -111,7 +111,7 @@ void cBlockBedHandler::OnUse(cChunkInterface & a_ChunkInterface, cWorldInterface
// Is foot end
VERIFY((Meta & 0x4) != 0x4); // Occupied flag should never be set, else our compilator (intended) is broken
- PillowDirection = MetaDataToDirection(Meta & 0x7);
+ PillowDirection = MetaDataToDirection(Meta & 0x3);
if (a_ChunkInterface.GetBlock(a_BlockX + PillowDirection.x, a_BlockY, a_BlockZ + PillowDirection.z) == E_BLOCK_BED) // Must always use pillow location for sleeping
{
a_WorldInterface.GetBroadcastManager().BroadcastUseBed(*a_Player, a_BlockX + PillowDirection.x, a_BlockY, a_BlockZ + PillowDirection.z);