diff options
| -rw-r--r-- | src/engine/client/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/client/client.cpp b/src/engine/client/client.cpp index dbcaa1ed..409d6969 100644 --- a/src/engine/client/client.cpp +++ b/src/engine/client/client.cpp @@ -881,7 +881,7 @@ void CClient::ProcessPacket(CNetChunk *pPacket) Info.m_MaxPlayers = str_toint(Up.GetString()); // don't add invalid info to the server browser list - if(Info.m_NumPlayers > MAX_CLIENTS || Info.m_MaxPlayers > MAX_CLIENTS) + if(Info.m_NumPlayers < 0 || Info.m_NumPlayers > MAX_CLIENTS || Info.m_MaxPlayers < 0 || Info.m_MaxPlayers > MAX_CLIENTS) return; str_format(Info.m_aAddress, sizeof(Info.m_aAddress), "%d.%d.%d.%d:%d", |