From 42a09f8593f5a6fa9d7f6d17d53936c8d5e2ffab Mon Sep 17 00:00:00 2001 From: Arkshine Date: Mon, 23 Nov 2015 00:35:44 +0100 Subject: [PATCH] Fix missing meta return in ServerActivate --- modules/cstrike/cstrike/CstrikeMain.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/cstrike/cstrike/CstrikeMain.cpp b/modules/cstrike/cstrike/CstrikeMain.cpp index 55a80286..58de8b74 100644 --- a/modules/cstrike/cstrike/CstrikeMain.cpp +++ b/modules/cstrike/cstrike/CstrikeMain.cpp @@ -91,11 +91,15 @@ void OnServerActivate(edict_t *pEdictList, int edictCount, int clientMax) { // Used to catch WeaponList message at map change. EnableMessageHooks(); + + RETURN_META(MRES_IGNORED); } void OnServerActivate_Post(edict_t *pEdictList, int edictCount, int clientMax) { DisableMessageHooks(); + + RETURN_META(MRES_IGNORED); } void OnPluginsUnloaded()