diff options
author | Gargaj <gargaj@conspiracy.hu> | 2015-12-01 23:12:44 +0100 |
---|---|---|
committer | Gargaj <gargaj@conspiracy.hu> | 2015-12-13 13:27:38 +0100 |
commit | f9008a4860dc9af9ca2e2ceb643064745269dcec (patch) | |
tree | cf8f3e6ed33c7dc5e98baa6a530683749ae40e51 /src/BlockEntities/ChestEntity.cpp | |
parent | Merge pull request #2737 from Gargaj/snowgolem (diff) | |
download | cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.gz cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.bz2 cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.lz cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.xz cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.zst cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.zip |
Diffstat (limited to 'src/BlockEntities/ChestEntity.cpp')
-rw-r--r-- | src/BlockEntities/ChestEntity.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/BlockEntities/ChestEntity.cpp b/src/BlockEntities/ChestEntity.cpp index 21baac977..bd6c19a2a 100644 --- a/src/BlockEntities/ChestEntity.cpp +++ b/src/BlockEntities/ChestEntity.cpp @@ -45,7 +45,7 @@ void cChestEntity::SendTo(cClientHandle & a_Client) -void cChestEntity::UsedBy(cPlayer * a_Player) +bool cChestEntity::UsedBy(cPlayer * a_Player) { // If the window is not created, open it anew: cWindow * Window = GetWindow(); @@ -71,6 +71,7 @@ void cChestEntity::UsedBy(cPlayer * a_Player) int ChunkX, ChunkZ; cChunkDef::BlockToChunk(m_PosX, m_PosZ, ChunkX, ChunkZ); m_World->MarkChunkDirty(ChunkX, ChunkZ, true); + return true; } |