From 1ebb25764883ec5e80aa11434540447ed9b149fc Mon Sep 17 00:00:00 2001 From: James Mitchell Date: Sun, 31 May 2020 17:05:30 +1000 Subject: [PATCH] Changing vscript convars class to CConvars to avoid duplicating the variable --- sp/src/game/shared/mapbase/vscript_funcs_shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sp/src/game/shared/mapbase/vscript_funcs_shared.cpp b/sp/src/game/shared/mapbase/vscript_funcs_shared.cpp index 398b136c..c964fc88 100644 --- a/sp/src/game/shared/mapbase/vscript_funcs_shared.cpp +++ b/sp/src/game/shared/mapbase/vscript_funcs_shared.cpp @@ -344,7 +344,7 @@ public: private: } g_ScriptConvarLookup; -BEGIN_SCRIPTDESC_ROOT_NAMED( CScriptConvarLookup, "Convars", SCRIPT_SINGLETON "Provides an interface for getting and setting convars." ) +BEGIN_SCRIPTDESC_ROOT_NAMED( CScriptConvarLookup, "CConvars", SCRIPT_SINGLETON "Provides an interface for getting and setting convars." ) #ifndef CLIENT_DLL DEFINE_SCRIPTFUNC( GetClientConvarValue, "Returns the convar value for the entindex as a string. Only works with client convars with the FCVAR_USERINFO flag." ) #endif