diff options
author | Tommy Santerre <tommy.santerre@gmail.com> | 2015-02-14 23:11:38 +0100 |
---|---|---|
committer | Tommy Santerre <tommy.santerre@gmail.com> | 2015-03-20 01:32:17 +0100 |
commit | 3f6d823aa41f1a7641fb686cf24561b0aca95798 (patch) | |
tree | a695c90473a2de9ebd4fb91b9716b97d8ab929be /src/BlockEntities/ChestEntity.cpp | |
parent | APIDump: Added inheritance checking. (diff) | |
download | cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.gz cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.bz2 cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.lz cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.xz cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.tar.zst cuberite-3f6d823aa41f1a7641fb686cf24561b0aca95798.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/ChestEntity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/BlockEntities/ChestEntity.cpp b/src/BlockEntities/ChestEntity.cpp index 3821f9aab..1c186310c 100644 --- a/src/BlockEntities/ChestEntity.cpp +++ b/src/BlockEntities/ChestEntity.cpp @@ -80,7 +80,7 @@ void cChestEntity::UsedBy(cPlayer * a_Player) void cChestEntity::OpenNewWindow(void) { // TODO: cats are an obstruction - if ((GetPosY() + 1 < cChunkDef::Height) && cBlockInfo::IsSolid(GetWorld()->GetBlock(GetPosX(), GetPosY() + 1, GetPosZ()))) + if ((GetPosY() < cChunkDef::Height - 1) && cBlockInfo::IsSolid(GetWorld()->GetBlock(GetPosX(), GetPosY() + 1, GetPosZ()))) { // Obstruction, don't open return; @@ -99,7 +99,7 @@ void cChestEntity::OpenNewWindow(void) virtual bool Item(cChestEntity * a_Chest) override { - if ((a_Chest->GetPosY() + 1 < cChunkDef::Height) && cBlockInfo::IsSolid(a_Chest->GetWorld()->GetBlock(a_Chest->GetPosX(), a_Chest->GetPosY() + 1, a_Chest->GetPosZ()))) + if ((a_Chest->GetPosY() < cChunkDef::Height - 1) && cBlockInfo::IsSolid(a_Chest->GetWorld()->GetBlock(a_Chest->GetPosX(), a_Chest->GetPosY() + 1, a_Chest->GetPosZ()))) { // Obstruction, don't open return false; |