MAX_PLAYERS: Change value in includes

This commit is contained in:
Arkshine 2015-02-01 18:40:20 +01:00
parent dd38ee103b
commit 1b350b627b
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
* all possible server situations. MaxClients changes based on the * all possible server situations. MaxClients changes based on the
* server the plugin is deployed on.. * server the plugin is deployed on..
*/ */
#define MAX_PLAYERS 33 /* Maximum number of players AMX Mod X supports */ #define MAX_PLAYERS 32 /* Maximum number of players AMX Mod X supports */
public stock const MaxClients; /* Maximum number of players the server supports */ public stock const MaxClients; /* Maximum number of players the server supports */

View File

@ -1221,7 +1221,7 @@ native get_playersnum(flag=0);
* *
* @noreturn * @noreturn
*/ */
native get_players(players[32], &num, const flags[]="", const team[]=""); native get_players(players[MAX_PLAYERS], &num, const flags[]="", const team[]="");
/** /**
* Retrieves argument of client command. * Retrieves argument of client command.