Raised MAXPLAYERS from 64 to 65 (bug 4490, r=dvander).

This commit is contained in:
Nicholas Hastings 2011-01-16 20:06:55 -05:00
parent 322a4ed05d
commit 3de61b69ad
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
#ifndef _INCLUDE_SOURCEMOD_EXTENSION_PROPER_H_ #ifndef _INCLUDE_SOURCEMOD_EXTENSION_PROPER_H_
#define _INCLUDE_SOURCEMOD_EXTENSION_PROPER_H_ #define _INCLUDE_SOURCEMOD_EXTENSION_PROPER_H_
#define MAXCLIENTS 64 #define MAXCLIENTS 65
#include <stdlib.h> #include <stdlib.h>
#include <stdarg.h> #include <stdarg.h>

View File

@ -53,7 +53,7 @@ enum NetFlow
* not be used in OnPluginStart(). * not be used in OnPluginStart().
*/ */
#define MAXPLAYERS 64 /**< Maximum number of players SourceMod supports */ #define MAXPLAYERS 65 /**< Maximum number of players SourceMod supports */
#define MAX_NAME_LENGTH 32 /**< Maximum buffer required to store a client name */ #define MAX_NAME_LENGTH 32 /**< Maximum buffer required to store a client name */
public const MaxClients; /**< Maximum number of players the server supports (dynamic) */ public const MaxClients; /**< Maximum number of players the server supports (dynamic) */