diff --git a/valve/addons/amxmodx/scripting/agmodx_ctf.sma b/valve/addons/amxmodx/scripting/agmodx_ctf.sma index 2ed57a5..ce42e0e 100644 --- a/valve/addons/amxmodx/scripting/agmodx_ctf.sma +++ b/valve/addons/amxmodx/scripting/agmodx_ctf.sma @@ -626,7 +626,7 @@ public OnCapturePointTouch(touched, toucher) { UpdateTeamScore(); // Check if we have reached the capture limit, if so start intermission - if (get_pcvar_num(gCvarCaptureLimit) == gBlueScore || get_pcvar_num(gCvarCaptureLimit) == gRedScore) { + if (get_pcvar_num(gCvarCaptureLimit) >= gBlueScore || get_pcvar_num(gCvarCaptureLimit) >= gRedScore) { StartIntermissionMode(); }