From 3affc95c043d011138752f33c35e8299818783b2 Mon Sep 17 00:00:00 2001 From: INeedBots Date: Sun, 22 Nov 2020 13:59:32 -0600 Subject: [PATCH] fix --- userraw/maps/mp/bots/_bot_script.gsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userraw/maps/mp/bots/_bot_script.gsc b/userraw/maps/mp/bots/_bot_script.gsc index 7a900d3..64607fb 100644 --- a/userraw/maps/mp/bots/_bot_script.gsc +++ b/userraw/maps/mp/bots/_bot_script.gsc @@ -5224,7 +5224,7 @@ bot_dem_attackers() continue; } } - timeleft = getTimeRemaining()/1000; + timeleft = maps\mp\gametypes\_gamelogic::getTimeRemaining()/1000; shouldLet = (game["teamScores"][myteam] > game["teamScores"][otherTeam] && timeleft < 90 && bombed == 1); //spawnkill conditions @@ -5433,7 +5433,7 @@ bot_dem_defenders() continue; } } - timeleft = getTimeRemaining()/1000; + timeleft = maps\mp\gametypes\_gamelogic::getTimeRemaining()/1000; shouldLet = (timeleft < 60 && ((bombed == 0 && bombs.size != 2) || (game["teamScores"][myteam] > game["teamScores"][otherTeam] && bombed == 1)) && randomInt(100) < 98);