diff options
Diffstat (limited to '')
-rw-r--r-- | source/cChunk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cChunk.cpp b/source/cChunk.cpp index 0ef2ab7b0..90d94a1ce 100644 --- a/source/cChunk.cpp +++ b/source/cChunk.cpp @@ -531,7 +531,7 @@ void cChunk::Tick(float a_Dt, MTRand & a_TickRandom) {
if ((*itr)->GetBlockType() == E_BLOCK_FURNACE)
{
- ((cFurnaceEntity *)(*itr))->Tick( a_Dt );
+ m_IsDirty = ((cFurnaceEntity *)(*itr))->Tick( a_Dt ) | m_IsDirty;
}
}
}
|