summaryrefslogtreecommitdiffstats
path: root/source/World.h
diff options
context:
space:
mode:
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);