diff options
author | madmaxoft <github@xoft.cz> | 2014-03-30 20:02:30 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-30 20:02:30 +0200 |
commit | a5c0600e6c69c329fcafc2f9138b9439cf5f65ce (patch) | |
tree | a9fc9b6e6e52e6c2bf3fd617cf7450cf3cc12770 /src/World.h | |
parent | Merge branch 'NetherFortGen'. (diff) | |
download | cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.gz cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.bz2 cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.lz cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.xz cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.zst cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/World.h b/src/World.h index bb2eb0b21..b3ee94a27 100644 --- a/src/World.h +++ b/src/World.h @@ -646,9 +646,9 @@ public: // Various queues length queries (cannot be const, they lock their CS): inline int GetGeneratorQueueLength (void) { return m_Generator.GetQueueLength(); } // tolua_export - inline int GetLightingQueueLength (void) { return m_Lighting.GetQueueLength(); } // tolua_export - inline int GetStorageLoadQueueLength(void) { return m_Storage.GetLoadQueueLength(); } // tolua_export - inline int GetStorageSaveQueueLength(void) { return m_Storage.GetSaveQueueLength(); } // tolua_export + inline size_t GetLightingQueueLength (void) { return m_Lighting.GetQueueLength(); } // tolua_export + inline size_t GetStorageLoadQueueLength(void) { return m_Storage.GetLoadQueueLength(); } // tolua_export + inline size_t GetStorageSaveQueueLength(void) { return m_Storage.GetSaveQueueLength(); } // tolua_export void InitializeSpawn(void); |