Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamTadeusz authored Aug 4, 2024
1 parent 273dbf3 commit 6b328eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mp/src/game/server/hl2mp/hl2mp_gameinterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@
void CServerGameClients::GetPlayerLimits( int& minplayers, int& maxplayers, int &defaultMaxPlayers ) const
{
#ifdef NEO
static constexpr int MAX_CLIENTS = MAX_PLAYERS - 1;
minplayers = 2;
defaultMaxPlayers = 24;
maxplayers = MAX_PLAYERS;
maxplayers = MAX_CLIENTS;
#else
minplayers = defaultMaxPlayers = 2;
maxplayers = 16;
Expand Down

0 comments on commit 6b328eb

Please sign in to comment.