From ebb5607bd4ae2dd4949dd59d22dde082103b82a3 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Wed, 30 Mar 2016 15:59:51 -0400 Subject: [PATCH] Really fix FollowCSGOServerGuidelines setting being ignored in SDKTools (always on) (bug 6480). --- core/HalfLife2.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/HalfLife2.cpp b/core/HalfLife2.cpp index 1b38da6a..5fa16f4b 100644 --- a/core/HalfLife2.cpp +++ b/core/HalfLife2.cpp @@ -178,8 +178,10 @@ ConfigResult CHalfLife2::OnSourceModConfigChanged(const char *key, const char *v { m_bFollowCSGOServerGuidelines = true; } - - return ConfigResult_Reject; + else + { + return ConfigResult_Reject; + } #endif }