Merge pull request #355 from TheMadSword/master

Changing MAX_NAME_LENGTH from 32 to 128 due to CSGO having 128.
This commit is contained in:
Kyle Sanderson 2015-07-02 14:27:33 -07:00
commit ed57a2f3d8

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 MaxClients; /**< Maximum number of players the server supports (dynamic) */