Define constants for the maximum number of players and weapons supported.
There is an existing MAX_PLAYERS constant used by hud code, this should be renamed first to MAX_PLAYERS_HUD since it's defined to be 64 instead of 32.
The maximum number of weapons is defined to be 32 (MAX_WEAPONS), but it's actually 64. Change this value.
The constant MAX_CLIENTS also defines the maximum number of players, replace it with MAX_PLAYERS.
Define constants for the maximum number of players and weapons supported. There is an existing
MAX_PLAYERS
constant used by hud code, this should be renamed first toMAX_PLAYERS_HUD
since it's defined to be 64 instead of 32.The maximum number of weapons is defined to be 32 (
MAX_WEAPONS
), but it's actually 64. Change this value.The constant
MAX_CLIENTS
also defines the maximum number of players, replace it withMAX_PLAYERS
.