summaryrefslogtreecommitdiffstats
path: root/source/World.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-14 13:43:55 +0200
committermadmaxoft <github@xoft.cz>2013-08-14 13:43:55 +0200
commitf8757d3606a9cf14a353e5b7a61b8e660a4cce6d (patch)
tree134fb9be8d1d7dfd0fb687923bd0a276e0b7698d /source/World.h
parentPlayer counts are now properly handled. (diff)
downloadcuberite-f8757d3606a9cf14a353e5b7a61b8e660a4cce6d.tar
cuberite-f8757d3606a9cf14a353e5b7a61b8e660a4cce6d.tar.gz
cuberite-f8757d3606a9cf14a353e5b7a61b8e660a4cce6d.tar.bz2
cuberite-f8757d3606a9cf14a353e5b7a61b8e660a4cce6d.tar.lz
cuberite-f8757d3606a9cf14a353e5b7a61b8e660a4cce6d.tar.xz
cuberite-f8757d3606a9cf14a353e5b7a61b8e660a4cce6d.tar.zst
cuberite-f8757d3606a9cf14a353e5b7a61b8e660a4cce6d.zip
Diffstat (limited to '')
-rw-r--r--source/World.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/World.h b/source/World.h
index 2c04c4cc6..4f1e942e4 100644
--- a/source/World.h
+++ b/source/World.h
@@ -666,6 +666,12 @@ private:
/// List of clients in this world, these will be ticked by this world
cClientHandleList m_Clients;
+
+ /// Clients that are scheduled for removal (ticked in another world), waiting for TickClients() to remove them
+ cClientHandleList m_ClientsToRemove;
+
+ /// Clients that are scheduled for adding, waiting for TickClients to add them
+ cClientHandleList m_ClientsToAdd;
cWorld(const AString & a_WorldName);