diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-10-09 14:46:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-09 14:46:09 +0200 |
commit | 1e8cae641592cc4ae7b6f1b997c514f9d2be422b (patch) | |
tree | 82f88f3fcb9d71c33c43b981570e0c07cf232906 /src/Chunk.cpp | |
parent | Updated the Core plugin. (diff) | |
download | cuberite-1e8cae641592cc4ae7b6f1b997c514f9d2be422b.tar cuberite-1e8cae641592cc4ae7b6f1b997c514f9d2be422b.tar.gz cuberite-1e8cae641592cc4ae7b6f1b997c514f9d2be422b.tar.bz2 cuberite-1e8cae641592cc4ae7b6f1b997c514f9d2be422b.tar.lz cuberite-1e8cae641592cc4ae7b6f1b997c514f9d2be422b.tar.xz cuberite-1e8cae641592cc4ae7b6f1b997c514f9d2be422b.tar.zst cuberite-1e8cae641592cc4ae7b6f1b997c514f9d2be422b.zip |
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r-- | src/Chunk.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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); } } |