From d83c498a8fb9958a62de9ebb90e7e1b0795a34af Mon Sep 17 00:00:00 2001 From: sappho Date: Wed, 26 Jul 2023 16:13:31 -0400 Subject: [PATCH] [1.12] update maxplayers define for 07-25-23 tf2 update (#2026) --- plugins/include/clients.inc | 2 +- public/IPlayerHelpers.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/clients.inc b/plugins/include/clients.inc index e9f43ef7..d88262f1 100644 --- a/plugins/include/clients.inc +++ b/plugins/include/clients.inc @@ -69,7 +69,7 @@ enum AuthIdType * MAXPLAYERS is a hardcoded value as an upper limit. MaxClients changes based on the server. */ -#define MAXPLAYERS 65 /**< Maximum number of players SourceMod supports */ +#define MAXPLAYERS 101 /**< Maximum number of players SourceMod supports */ #define MAX_NAME_LENGTH 128 /**< Maximum buffer required to store a client name */ #define MAX_AUTHID_LENGTH 64 /**< Maximum buffer required to store any AuthID type */ diff --git a/public/IPlayerHelpers.h b/public/IPlayerHelpers.h index b3893e1e..edb0dc57 100644 --- a/public/IPlayerHelpers.h +++ b/public/IPlayerHelpers.h @@ -49,7 +49,7 @@ class IPlayerInfo; #define SM_REPLY_CONSOLE 0 /**< Reply to console. */ #define SM_REPLY_CHAT 1 /**< Reply to chat. */ -#define SM_MAXPLAYERS 65 /**< Maxplayer Count */ +#define SM_MAXPLAYERS 101 /**< Maxplayer Count */ namespace SourceMod {