diff options
author | madmaxoft <github@xoft.cz> | 2013-08-14 13:43:55 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-14 13:43:55 +0200 |
commit | f8757d3606a9cf14a353e5b7a61b8e660a4cce6d (patch) | |
tree | 134fb9be8d1d7dfd0fb687923bd0a276e0b7698d /source/World.h | |
parent | Player counts are now properly handled. (diff) | |
download | cuberite-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.h | 6 |
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); |