diff options
Diffstat (limited to 'source/Chunk.cpp')
-rw-r--r-- | source/Chunk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Chunk.cpp b/source/Chunk.cpp index a119c7c61..56741e3f7 100644 --- a/source/Chunk.cpp +++ b/source/Chunk.cpp @@ -452,7 +452,7 @@ void cChunk::Tick(float a_Dt) // Tick all block entities in this chunk: for (cBlockEntityList::iterator itr = m_BlockEntities.begin(); itr != m_BlockEntities.end(); ++itr) { - m_IsDirty = (*itr)->Tick(a_Dt) | m_IsDirty; + m_IsDirty = (*itr)->Tick(a_Dt, *this) | m_IsDirty; } // Tick all entities in this chunk: |