diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-26 00:48:28 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-26 00:48:28 +0100 |
commit | a14e015354611a50920a0861f80c9691ab8fa633 (patch) | |
tree | 49e573603f5cff7dc551fa79d08e1d801ef3d8ca /source/cServer.cpp | |
parent | Made the viewdistance settable by users and default in settings.ini. The default is 9. (diff) | |
download | cuberite-a14e015354611a50920a0861f80c9691ab8fa633.tar cuberite-a14e015354611a50920a0861f80c9691ab8fa633.tar.gz cuberite-a14e015354611a50920a0861f80c9691ab8fa633.tar.bz2 cuberite-a14e015354611a50920a0861f80c9691ab8fa633.tar.lz cuberite-a14e015354611a50920a0861f80c9691ab8fa633.tar.xz cuberite-a14e015354611a50920a0861f80c9691ab8fa633.tar.zst cuberite-a14e015354611a50920a0861f80c9691ab8fa633.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cServer.cpp b/source/cServer.cpp index 8462fa915..97bcffaae 100644 --- a/source/cServer.cpp +++ b/source/cServer.cpp @@ -102,7 +102,7 @@ void cServer::ServerListenThread( void *a_Args ) void cServer::ClientDestroying(const cClientHandle * a_Client)
{
- m_SocketThreads.RemoveClient(a_Client);
+ m_SocketThreads.StopReading(a_Client);
}
|