From 0a91b1f5b1160171c3c5ecaecc9b7cb0e40c5a7d Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sun, 25 Feb 2018 10:51:18 -0500 Subject: [PATCH] Increase MAX_NAME_LENGTH to match CS:GO MAX_PLAYER_NAME_LENGTH. --- plugins/include/clients.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/clients.inc b/plugins/include/clients.inc index 77bb236b..3296b7ab 100644 --- a/plugins/include/clients.inc +++ b/plugins/include/clients.inc @@ -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) */