From 04c141828f3856dbfbf3ba69bba08b57d8ce4204 Mon Sep 17 00:00:00 2001 From: ChillerDragon Date: Fri, 16 Aug 2024 13:01:35 +0800 Subject: [PATCH] Increase max temp cmp length Fixes long rcon commands being cut off on custom servers. --- src/engine/console.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/console.h b/src/engine/console.h index 7de6ae70d..6b0067b6a 100644 --- a/src/engine/console.h +++ b/src/engine/console.h @@ -30,7 +30,7 @@ public: ACCESS_LEVEL_HELPER, ACCESS_LEVEL_USER, - TEMPCMD_NAME_LENGTH = 32, + TEMPCMD_NAME_LENGTH = 512, TEMPCMD_HELP_LENGTH = 192, TEMPCMD_PARAMS_LENGTH = 96,