From 7e1aaf405176112e9fb9cd241ebcc9e0811a778f Mon Sep 17 00:00:00 2001 From: ineedbots Date: Mon, 2 Aug 2021 16:22:33 -0600 Subject: [PATCH] allow triple cap if behind --- raw/scripts/tripleDom.gsc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/raw/scripts/tripleDom.gsc b/raw/scripts/tripleDom.gsc index 488b5ec..6e36ddc 100644 --- a/raw/scripts/tripleDom.gsc +++ b/raw/scripts/tripleDom.gsc @@ -45,6 +45,12 @@ watchFlags() team = "axis"; } + if ( game["teamScores"]["axis"] < game["teamScores"]["allies"] && team == "axis" ) + continue; + + if ( game["teamScores"]["allies"] < game["teamScores"]["axis"] && team == "allies" ) + continue; + if ( team != "none" ) { for ( i = 0; i < level.domFlags.size; i++ )