From 1e8cae641592cc4ae7b6f1b997c514f9d2be422b Mon Sep 17 00:00:00 2001 From: LogicParrot Date: Sun, 9 Oct 2016 15:46:09 +0300 Subject: cChunk::SetAlwaysTicked implies cChunk::stay (#3361) --- src/Chunk.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Chunk.cpp') diff --git a/src/Chunk.cpp b/src/Chunk.cpp index d833feea5..508fe355e 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -1728,10 +1728,12 @@ void cChunk::SetAlwaysTicked(bool a_AlwaysTicked) if (a_AlwaysTicked) { m_AlwaysTicked += 1; + Stay(a_AlwaysTicked); } else { m_AlwaysTicked -= 1; + Stay(a_AlwaysTicked); } } -- cgit v1.2.3