Increase MAX_NAME_LENGTH to match CS:GO MAX_PLAYER_NAME_LENGTH.

This commit is contained in:
Nicholas Hastings 2018-02-25 10:51:18 -05:00
parent a17b47a2dc
commit 0a91b1f5b1

View File

@ -70,7 +70,7 @@ enum AuthIdType
*/
#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 int MaxClients; /**< Maximum number of players the server supports (dynamic) */