From 1b706bcbcf27a4deab01ad3b1fc806e6f82c6cf1 Mon Sep 17 00:00:00 2001 From: TheMadSword Date: Thu, 2 Jul 2015 16:14:54 -0400 Subject: [PATCH] Changing MAX_NAME_LENGTH from 32 to 128 due to CSGO having 128 bytes buffer-size. --- 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 226ce3a9..57ccc31a 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 MaxClients; /**< Maximum number of players the server supports (dynamic) */