diff options
author | madmaxoft <github@xoft.cz> | 2014-02-10 22:47:10 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-02-10 22:47:10 +0100 |
commit | 9cebc9157cf43ba639227b9d79b980b3613dda1e (patch) | |
tree | 9c61bbee8a94668703c316f1c300187d247093f9 /src/LightingThread.h | |
parent | cLuaState: Stack traces don't include ghost 0-th element. (diff) | |
download | cuberite-9cebc9157cf43ba639227b9d79b980b3613dda1e.tar cuberite-9cebc9157cf43ba639227b9d79b980b3613dda1e.tar.gz cuberite-9cebc9157cf43ba639227b9d79b980b3613dda1e.tar.bz2 cuberite-9cebc9157cf43ba639227b9d79b980b3613dda1e.tar.lz cuberite-9cebc9157cf43ba639227b9d79b980b3613dda1e.tar.xz cuberite-9cebc9157cf43ba639227b9d79b980b3613dda1e.tar.zst cuberite-9cebc9157cf43ba639227b9d79b980b3613dda1e.zip |
Diffstat (limited to 'src/LightingThread.h')
-rw-r--r-- | src/LightingThread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/LightingThread.h b/src/LightingThread.h index 0e17c485f..81dd9d61f 100644 --- a/src/LightingThread.h +++ b/src/LightingThread.h @@ -83,7 +83,8 @@ protected: protected: virtual void OnChunkAvailable(int a_ChunkX, int a_ChunkZ) override {} - virtual void OnAllChunksAvailable(void) override; + virtual bool OnAllChunksAvailable(void) override; + virtual void OnDisabled(void) override; } ; typedef std::list<cChunkStay *> cChunkStays; |