diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-04-18 12:30:23 +0200 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-04-22 23:30:00 +0200 |
commit | 7f5757eccff7b81c17443ea4e0b4ce86e2d5dc04 (patch) | |
tree | 755a1e62f0b67ac4c8d059145a9e082d0cb11876 /src/BlockEntities | |
parent | Merge pull request #3048 from Woazboat/minecarts (diff) | |
download | cuberite-7f5757eccff7b81c17443ea4e0b4ce86e2d5dc04.tar cuberite-7f5757eccff7b81c17443ea4e0b4ce86e2d5dc04.tar.gz cuberite-7f5757eccff7b81c17443ea4e0b4ce86e2d5dc04.tar.bz2 cuberite-7f5757eccff7b81c17443ea4e0b4ce86e2d5dc04.tar.lz cuberite-7f5757eccff7b81c17443ea4e0b4ce86e2d5dc04.tar.xz cuberite-7f5757eccff7b81c17443ea4e0b4ce86e2d5dc04.tar.zst cuberite-7f5757eccff7b81c17443ea4e0b4ce86e2d5dc04.zip |
Diffstat (limited to 'src/BlockEntities')
-rw-r--r-- | src/BlockEntities/ChestEntity.cpp | 2 | ||||
-rw-r--r-- | src/BlockEntities/ChestEntity.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/BlockEntities/ChestEntity.cpp b/src/BlockEntities/ChestEntity.cpp index bd6c19a2a..3791832e3 100644 --- a/src/BlockEntities/ChestEntity.cpp +++ b/src/BlockEntities/ChestEntity.cpp @@ -70,7 +70,7 @@ bool cChestEntity::UsedBy(cPlayer * a_Player) // The few false positives aren't much to worry about int ChunkX, ChunkZ; cChunkDef::BlockToChunk(m_PosX, m_PosZ, ChunkX, ChunkZ); - m_World->MarkChunkDirty(ChunkX, ChunkZ, true); + m_World->MarkChunkDirty(ChunkX, ChunkZ); return true; } diff --git a/src/BlockEntities/ChestEntity.h b/src/BlockEntities/ChestEntity.h index fac3dcdae..8953644e6 100644 --- a/src/BlockEntities/ChestEntity.h +++ b/src/BlockEntities/ChestEntity.h @@ -67,7 +67,6 @@ private: } m_World->MarkChunkDirty(GetChunkX(), GetChunkZ()); - m_World->MarkRedstoneDirty(GetChunkX(), GetChunkZ()); } } |