From 2a7c5262802f6b254c1d270a7ba72d1f97e5a9fc Mon Sep 17 00:00:00 2001 From: razor Date: Tue, 5 Mar 2024 17:59:55 +1100 Subject: [PATCH] avoid configstring index clash with base_entranced (#1218) --- codemp/game/bg_public.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codemp/game/bg_public.h b/codemp/game/bg_public.h index 1c2d7b6311..0326fb64f4 100644 --- a/codemp/game/bg_public.h +++ b/codemp/game/bg_public.h @@ -111,7 +111,7 @@ along with this program; if not, see . #define CS_FLAGSTATUS 23 // string indicating flag status in CTF #define CS_SHADERSTATE 24 #define CS_BOTINFO 25 -#define CS_LEGACY_FIXES 26 + #define CS_ITEMS 27 // string of 0's and 1's that tell which items are present #define CS_CLIENT_JEDIMASTER 28 // current jedi master @@ -120,6 +120,8 @@ along with this program; if not, see . #define CS_CLIENT_DUELHEALTHS 31 // nmckenzie: DUEL_HEALTH. Hopefully adding this cs is safe and good? #define CS_GLOBAL_AMBIENT_SET 32 +#define CS_LEGACY_FIXES 36 + #define CS_AMBIENT_SET 37 #define CS_SIEGE_STATE (CS_AMBIENT_SET+MAX_AMBIENT_SETS)