diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-08-20 22:22:38 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-08-20 22:22:38 +0200 |
commit | 4da61e67d7638c46dc56fe451e81a5b4b0f134db (patch) | |
tree | 2e79681edadd6be596cdf8c18a29ea2c9a7be55d /src/Protocol/Protocol17x.cpp | |
parent | Added a_ClientHandle to the HOOK_SERVER_PING hook. (diff) | |
download | cuberite-4da61e67d7638c46dc56fe451e81a5b4b0f134db.tar cuberite-4da61e67d7638c46dc56fe451e81a5b4b0f134db.tar.gz cuberite-4da61e67d7638c46dc56fe451e81a5b4b0f134db.tar.bz2 cuberite-4da61e67d7638c46dc56fe451e81a5b4b0f134db.tar.lz cuberite-4da61e67d7638c46dc56fe451e81a5b4b0f134db.tar.xz cuberite-4da61e67d7638c46dc56fe451e81a5b4b0f134db.tar.zst cuberite-4da61e67d7638c46dc56fe451e81a5b4b0f134db.zip |
Diffstat (limited to 'src/Protocol/Protocol17x.cpp')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 565532913..59db0b7d8 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -1717,11 +1717,11 @@ void cProtocol172::HandlePacketStatusPing(cByteBuffer & a_ByteBuffer) void cProtocol172::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) { cServer * Server = cRoot::Get()->GetServer(); - AString Motd = Server->GetDescription(); + AString ServerDescription = Server->GetDescription(); int NumPlayers = Server->GetNumPlayers(); int MaxPlayers = Server->GetMaxPlayers(); AString Favicon = Server->GetFaviconData(); - cRoot::Get()->GetPluginManager()->CallHookServerPing(*m_Client, Motd, NumPlayers, MaxPlayers, Favicon); + cRoot::Get()->GetPluginManager()->CallHookServerPing(*m_Client, ServerDescription, NumPlayers, MaxPlayers, Favicon); // Version: Json::Value Version; @@ -1736,7 +1736,7 @@ void cProtocol172::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) // Description: Json::Value Description; - Description["text"] = Motd.c_str(); + Description["text"] = ServerDescription.c_str(); // Create the response: Json::Value ResponseValue; |