diff --git a/reapi/extra/amxmodx/scripting/include/cssdk_const.inc b/reapi/extra/amxmodx/scripting/include/cssdk_const.inc index a08cb21..7177027 100644 --- a/reapi/extra/amxmodx/scripting/include/cssdk_const.inc +++ b/reapi/extra/amxmodx/scripting/include/cssdk_const.inc @@ -929,6 +929,8 @@ enum ScenarioEventEndRound ROUND_TERRORISTS_NOT_ESCAPED, ROUND_VIP_NOT_ESCAPED, ROUND_GAME_COMMENCE, + ROUND_GAME_RESTART, + ROUND_GAME_OVER }; enum PLAYER_ANIM diff --git a/reapi/src/main.cpp b/reapi/src/main.cpp index 53402cc..5880014 100644 --- a/reapi/src/main.cpp +++ b/reapi/src/main.cpp @@ -71,6 +71,8 @@ void KeyValue(edict_t *pentKeyvalue, KeyValueData *pkvd) g_pEdicts = pentKeyvalue; g_pFunctionTable->pfnKeyValue = nullptr; } + + SET_META_RESULT(MRES_IGNORED); } CGameRules *InstallGameRules(IReGameHook_InstallGameRules *chain)