diff options
author | 12xx12 <44411062+12xx12@users.noreply.github.com> | 2020-09-05 17:13:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-05 17:13:44 +0200 |
commit | c2f8ceb554982a33bcd4a1e168f6c4e26d0b85dd (patch) | |
tree | d87a9a2041afd755cbe0b63bb52e079b0f36235f /src/ClientHandle.cpp | |
parent | Use pitch lookup in noteblock block entity (#4826) (diff) | |
download | cuberite-c2f8ceb554982a33bcd4a1e168f6c4e26d0b85dd.tar cuberite-c2f8ceb554982a33bcd4a1e168f6c4e26d0b85dd.tar.gz cuberite-c2f8ceb554982a33bcd4a1e168f6c4e26d0b85dd.tar.bz2 cuberite-c2f8ceb554982a33bcd4a1e168f6c4e26d0b85dd.tar.lz cuberite-c2f8ceb554982a33bcd4a1e168f6c4e26d0b85dd.tar.xz cuberite-c2f8ceb554982a33bcd4a1e168f6c4e26d0b85dd.tar.zst cuberite-c2f8ceb554982a33bcd4a1e168f6c4e26d0b85dd.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 040c3a306..86e90aa8b 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -2109,6 +2109,7 @@ void cClientHandle::Tick(float a_Dt) LOGD("Client %s @ %s (%p) has been queued for destruction, destroying now.", m_Username.c_str(), m_IPString.c_str(), static_cast<void *>(this) ); + GetPlayer()->GetStatManager().AddValue(Statistic::LeaveGame); Destroy(); return; } |