diff options
author | tycho <work.tycho@gmail.com> | 2015-05-25 12:10:26 +0200 |
---|---|---|
committer | tycho <work.tycho@gmail.com> | 2015-05-26 11:34:14 +0200 |
commit | 31b95afd79886a90f7629b0a7038d90790660e7d (patch) | |
tree | ec6469de181fde60c61bdae320e589e81ddddecd /src | |
parent | Merge pull request #1848 from scottwillmoore/ImplementTitleCommand (diff) | |
download | cuberite-31b95afd79886a90f7629b0a7038d90790660e7d.tar cuberite-31b95afd79886a90f7629b0a7038d90790660e7d.tar.gz cuberite-31b95afd79886a90f7629b0a7038d90790660e7d.tar.bz2 cuberite-31b95afd79886a90f7629b0a7038d90790660e7d.tar.lz cuberite-31b95afd79886a90f7629b0a7038d90790660e7d.tar.xz cuberite-31b95afd79886a90f7629b0a7038d90790660e7d.tar.zst cuberite-31b95afd79886a90f7629b0a7038d90790660e7d.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/ClientHandle.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 13972b0f5..765ccdee2 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -2957,13 +2957,20 @@ void cClientHandle::PacketError(UInt32 a_PacketType) void cClientHandle::SocketClosed(void) { // The socket has been closed for any reason - + if (!m_Username.empty()) // Ignore client pings { LOGD("Client %s @ %s disconnected", m_Username.c_str(), m_IPString.c_str()); cRoot::Get()->GetPluginManager()->CallHookDisconnect(*this, "Player disconnected"); } - + if (m_State < csDestroying) + { + cWorld * World = m_Player->GetWorld(); + if (World != nullptr) + { + World->RemovePlayer(m_Player, true); // Must be called before cPlayer::Destroy() as otherwise cChunk tries to delete the player, and then we do it again + } + } Destroy(); } |