diff options
author | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-09-25 12:49:18 +0200 |
---|---|---|
committer | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-09-25 14:11:39 +0200 |
commit | f1270cb7a1e70b29579380ad30d3fa5c4d41ee93 (patch) | |
tree | 5ce66d38d71c315ef7c91c0f55d7175bbe5db628 /src/Protocol/Protocol18x.cpp | |
parent | Merge pull request #2478 from cuberite/FixArmBuild (diff) | |
download | cuberite-f1270cb7a1e70b29579380ad30d3fa5c4d41ee93.tar cuberite-f1270cb7a1e70b29579380ad30d3fa5c4d41ee93.tar.gz cuberite-f1270cb7a1e70b29579380ad30d3fa5c4d41ee93.tar.bz2 cuberite-f1270cb7a1e70b29579380ad30d3fa5c4d41ee93.tar.lz cuberite-f1270cb7a1e70b29579380ad30d3fa5c4d41ee93.tar.xz cuberite-f1270cb7a1e70b29579380ad30d3fa5c4d41ee93.tar.zst cuberite-f1270cb7a1e70b29579380ad30d3fa5c4d41ee93.zip |
Diffstat (limited to 'src/Protocol/Protocol18x.cpp')
-rw-r--r-- | src/Protocol/Protocol18x.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp index ed1d3bfc1..d5ecb8023 100644 --- a/src/Protocol/Protocol18x.cpp +++ b/src/Protocol/Protocol18x.cpp @@ -2066,7 +2066,7 @@ void cProtocol180::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) // Version: Json::Value Version; - Version["name"] = "MCServer 1.8"; + Version["name"] = "Cuberite 1.8"; Version["protocol"] = 47; // Players: @@ -2671,7 +2671,7 @@ void cProtocol180::HandleVanillaPluginMessage(cByteBuffer & a_ByteBuffer, const HANDLE_READ(a_ByteBuffer, ReadVarUTF8String, AString, Brand); m_Client->SetClientBrand(Brand); // Send back our brand, including the length: - SendPluginMessage("MC|Brand", "\x08MCServer"); + SendPluginMessage("MC|Brand", "\x08Cuberite"); return; } else if (a_Channel == "MC|Beacon") |