diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2017-07-28 18:54:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-28 18:54:40 +0200 |
commit | eb4432bb6260eaadb41495149739244308e9e125 (patch) | |
tree | 8f1787586d23194ef5f4d7af8a4454f0ea9e179a /src/Protocol/Protocol_1_11.cpp | |
parent | Handle incomplete packets in cProtocolRecognizer (diff) | |
download | cuberite-eb4432bb6260eaadb41495149739244308e9e125.tar cuberite-eb4432bb6260eaadb41495149739244308e9e125.tar.gz cuberite-eb4432bb6260eaadb41495149739244308e9e125.tar.bz2 cuberite-eb4432bb6260eaadb41495149739244308e9e125.tar.lz cuberite-eb4432bb6260eaadb41495149739244308e9e125.tar.xz cuberite-eb4432bb6260eaadb41495149739244308e9e125.tar.zst cuberite-eb4432bb6260eaadb41495149739244308e9e125.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol_1_11.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Protocol/Protocol_1_11.cpp b/src/Protocol/Protocol_1_11.cpp index 3376e8f88..4a4006390 100644 --- a/src/Protocol/Protocol_1_11.cpp +++ b/src/Protocol/Protocol_1_11.cpp @@ -561,8 +561,8 @@ void cProtocol_1_11_0::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) { cServer * Server = cRoot::Get()->GetServer(); AString ServerDescription = Server->GetDescription(); - int NumPlayers = Server->GetNumPlayers(); - int MaxPlayers = Server->GetMaxPlayers(); + auto NumPlayers = static_cast<signed>(Server->GetNumPlayers()); + auto MaxPlayers = static_cast<signed>(Server->GetMaxPlayers()); AString Favicon = Server->GetFaviconData(); cRoot::Get()->GetPluginManager()->CallHookServerPing(*m_Client, ServerDescription, NumPlayers, MaxPlayers, Favicon); @@ -1184,8 +1184,8 @@ void cProtocol_1_11_1::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) { cServer * Server = cRoot::Get()->GetServer(); AString ServerDescription = Server->GetDescription(); - int NumPlayers = Server->GetNumPlayers(); - int MaxPlayers = Server->GetMaxPlayers(); + auto NumPlayers = static_cast<signed>(Server->GetNumPlayers()); + auto MaxPlayers = static_cast<signed>(Server->GetMaxPlayers()); AString Favicon = Server->GetFaviconData(); cRoot::Get()->GetPluginManager()->CallHookServerPing(*m_Client, ServerDescription, NumPlayers, MaxPlayers, Favicon); |