You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
SamVanheer
changed the title
Define constants for maximum number of players and weapons
Define and use constants for maximum number of players and weapons
Dec 1, 2021
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
.The text was updated successfully, but these errors were encountered: