From 82621ea1e117d7779dd6686a68cf3c080ccf74ba Mon Sep 17 00:00:00 2001 From: zaCade Date: Thu, 19 Jul 2018 13:52:43 +0200 Subject: [PATCH] PointServerCommandFilter: Execute Commands always. Just execute the command trough sourcemod, to bypass the damn bspconvar_whitelist shenanigans. Cause that shitty file resets each damn update.. --- PointServerCommandFilter/scripting/PointServerCommandFilter.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PointServerCommandFilter/scripting/PointServerCommandFilter.sp b/PointServerCommandFilter/scripting/PointServerCommandFilter.sp index ee86bdeb..73d4ad27 100644 --- a/PointServerCommandFilter/scripting/PointServerCommandFilter.sp +++ b/PointServerCommandFilter/scripting/PointServerCommandFilter.sp @@ -132,7 +132,7 @@ public MRESReturn AcceptInput(int pThis, Handle hReturn, Handle hParams) DHookSetReturn(hReturn, false); return MRES_Supercede; } - else if(iAction == Plugin_Changed || bReplaced) + else if(iAction == Plugin_Changed || GetEngineVersion() == Engine_CSGO || bReplaced) { ServerCommand(sCommand); DHookSetReturn(hReturn, true);