diff --git a/valve/addons/amxmodx/scripting/agmodx_ctf.sma b/valve/addons/amxmodx/scripting/agmodx_ctf.sma index e4c8ad6..01e939d 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 (gBlueScore >= get_pcvar_num(gCvarCaptureLimit) || gRedScore >= get_pcvar_num(gCvarCaptureLimit)) { StartIntermissionMode(); }