summaryrefslogtreecommitdiffstats
path: root/source/cChunk.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-05-28 18:47:57 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-05-28 18:47:57 +0200
commit1a0bfd8d28c68d3ee60352ef67c58da946c43cea (patch)
tree821bb46846db0464a1ddbbfe4c60e335a375d33e /source/cChunk.cpp
parentIce finisher generator; fixed snow on water. (diff)
downloadcuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar
cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.gz
cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.bz2
cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.lz
cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.xz
cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.tar.zst
cuberite-1a0bfd8d28c68d3ee60352ef67c58da946c43cea.zip
Diffstat (limited to 'source/cChunk.cpp')
-rw-r--r--source/cChunk.cpp2
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;
}
}
}