diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-02-16 08:05:11 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-02-16 08:05:11 +0100 |
commit | 233f0add2930f316c5fafce9e29a12f2e4f007bc (patch) | |
tree | 8007f9a88f30eb7b209c68e9ab2a88bb290d382b /src/Protocol/Protocol17x.cpp | |
parent | Removed the unnecessary LoopPlayersAndBroadcastChat() functions. (diff) | |
parent | Replace random Float Generation and broadcast the Exp Pickup Sound (diff) | |
download | cuberite-233f0add2930f316c5fafce9e29a12f2e4f007bc.tar cuberite-233f0add2930f316c5fafce9e29a12f2e4f007bc.tar.gz cuberite-233f0add2930f316c5fafce9e29a12f2e4f007bc.tar.bz2 cuberite-233f0add2930f316c5fafce9e29a12f2e4f007bc.tar.lz cuberite-233f0add2930f316c5fafce9e29a12f2e4f007bc.tar.xz cuberite-233f0add2930f316c5fafce9e29a12f2e4f007bc.tar.zst cuberite-233f0add2930f316c5fafce9e29a12f2e4f007bc.zip |
Diffstat (limited to 'src/Protocol/Protocol17x.cpp')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 5aa18300c..1dfa5ec90 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -550,7 +550,7 @@ void cProtocol172::SendLogin(const cPlayer & a_Player, const cWorld & a_World) Pkt.WriteByte((Byte)a_Player.GetEffectiveGameMode() | (cRoot::Get()->GetServer()->IsHardcore() ? 0x08 : 0)); // Hardcore flag bit 4 Pkt.WriteChar((char)a_World.GetDimension()); Pkt.WriteByte(2); // TODO: Difficulty (set to Normal) - Pkt.WriteByte(cRoot::Get()->GetServer()->GetMaxPlayers()); + Pkt.WriteByte(std::min(cRoot::Get()->GetServer()->GetMaxPlayers(), 60)); Pkt.WriteString("default"); // Level type - wtf? } |