Changing MAX_NAME_LENGTH from 32 to 128 due to CSGO having 128 bytes

buffer-size.
This commit is contained in:
TheMadSword 2015-07-02 16:14:54 -04:00
parent 668839d1cb
commit 1b706bcbcf

View File

@ -70,7 +70,7 @@ enum AuthIdType
*/ */
#define MAXPLAYERS 65 /**< 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 128 /**< 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) */