diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-09-25 18:37:24 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-09-25 18:37:24 +0200 |
commit | daf5127b28f3c6884e94fc066b3e5e117a6b5d35 (patch) | |
tree | f4f3353962c83967a23b4ee9ba5476697f383be9 /src | |
parent | Merge pull request #1449 from mc-server/WorldLoader (diff) | |
download | cuberite-daf5127b28f3c6884e94fc066b3e5e117a6b5d35.tar cuberite-daf5127b28f3c6884e94fc066b3e5e117a6b5d35.tar.gz cuberite-daf5127b28f3c6884e94fc066b3e5e117a6b5d35.tar.bz2 cuberite-daf5127b28f3c6884e94fc066b3e5e117a6b5d35.tar.lz cuberite-daf5127b28f3c6884e94fc066b3e5e117a6b5d35.tar.xz cuberite-daf5127b28f3c6884e94fc066b3e5e117a6b5d35.tar.zst cuberite-daf5127b28f3c6884e94fc066b3e5e117a6b5d35.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/Entities/HangingEntity.cpp | 15 | ||||
-rw-r--r-- | src/Entities/HangingEntity.h | 2 | ||||
-rw-r--r-- | src/WorldStorage/WSSAnvil.cpp | 2 |
3 files changed, 17 insertions, 2 deletions
diff --git a/src/Entities/HangingEntity.cpp b/src/Entities/HangingEntity.cpp index 8c70c606e..e789f5f18 100644 --- a/src/Entities/HangingEntity.cpp +++ b/src/Entities/HangingEntity.cpp @@ -21,6 +21,21 @@ cHangingEntity::cHangingEntity(eEntityType a_EntityType, eBlockFace a_BlockFace, +void cHangingEntity::SetDirection(eBlockFace a_BlockFace) +{ + if ((a_BlockFace < 2) || (a_BlockFace > 5)) + { + ASSERT(!"Tried to set a bad direction!"); + return; + } + + m_BlockFace = a_BlockFace; +} + + + + + void cHangingEntity::SpawnOn(cClientHandle & a_ClientHandle) { int Dir = 0; diff --git a/src/Entities/HangingEntity.h b/src/Entities/HangingEntity.h index 3593f9ede..455f2f23f 100644 --- a/src/Entities/HangingEntity.h +++ b/src/Entities/HangingEntity.h @@ -24,7 +24,7 @@ public: eBlockFace GetDirection() const { return m_BlockFace; } // tolua_export /** Set the orientation from the hanging entity */ - void SetDirection(eBlockFace a_BlockFace) { m_BlockFace = a_BlockFace; } // tolua_export + void SetDirection(eBlockFace a_BlockFace); // tolua_export /** Returns the X coord. */ int GetTileX() const { return POSX_TOINT; } // tolua_export diff --git a/src/WorldStorage/WSSAnvil.cpp b/src/WorldStorage/WSSAnvil.cpp index bd814e2c7..7a9490cd4 100644 --- a/src/WorldStorage/WSSAnvil.cpp +++ b/src/WorldStorage/WSSAnvil.cpp @@ -1664,7 +1664,7 @@ void cWSSAnvil::LoadHangingFromNBT(cHangingEntity & a_Hanging, const cParsedNBT if (Direction > 0) { Direction = (int)a_NBT.GetByte(Direction); - if ((Direction < 0) || (Direction > 5)) + if ((Direction < 2) || (Direction > 5)) { a_Hanging.SetDirection(BLOCK_FACE_NORTH); } |