summaryrefslogtreecommitdiffstats
path: root/source/Protocol/Protocol125.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-09-09 18:34:38 +0200
committermadmaxoft <github@xoft.cz>2013-09-09 18:34:38 +0200
commitbecb36d2d12640d02ffe1ca6294c54bf154c9cd3 (patch)
tree5a88e431265d1e13640b5abd71f9412c060e7963 /source/Protocol/Protocol125.cpp
parentMerge branch 'boats' of git://github.com/tigerw/MCServer. (diff)
downloadcuberite-becb36d2d12640d02ffe1ca6294c54bf154c9cd3.tar
cuberite-becb36d2d12640d02ffe1ca6294c54bf154c9cd3.tar.gz
cuberite-becb36d2d12640d02ffe1ca6294c54bf154c9cd3.tar.bz2
cuberite-becb36d2d12640d02ffe1ca6294c54bf154c9cd3.tar.lz
cuberite-becb36d2d12640d02ffe1ca6294c54bf154c9cd3.tar.xz
cuberite-becb36d2d12640d02ffe1ca6294c54bf154c9cd3.tar.zst
cuberite-becb36d2d12640d02ffe1ca6294c54bf154c9cd3.zip
Diffstat (limited to 'source/Protocol/Protocol125.cpp')
-rw-r--r--source/Protocol/Protocol125.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Protocol/Protocol125.cpp b/source/Protocol/Protocol125.cpp
index 4577e0c16..54bd28c9f 100644
--- a/source/Protocol/Protocol125.cpp
+++ b/source/Protocol/Protocol125.cpp
@@ -584,7 +584,7 @@ void cProtocol125::SendPlayerListItem(const cPlayer & a_Player, bool a_IsOnline)
WriteByte ((unsigned char)PACKET_PLAYER_LIST_ITEM);
WriteString(PlayerName);
WriteBool (a_IsOnline);
- WriteShort (a_Player.GetClientHandle()->GetPing());
+ WriteShort (a_IsOnline ? a_Player.GetClientHandle()->GetPing() : 0);
Flush();
}