aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorx3Karma <juliuslimck@gmail.com>2022-08-11 21:09:02 +0800
committerGitHub <noreply@github.com>2022-08-11 14:09:02 +0100
commit1bb3dafd123a4c4df987ac5077f1cec202858be9 (patch)
tree8c108b01007d980f9dfcfbc263ac179d088c4388
parentfcdbedd671e8c824f626b39a75538df9aff762c0 (diff)
downloadNorthstarMods-1bb3dafd123a4c4df987ac5077f1cec202858be9.tar.gz
NorthstarMods-1bb3dafd123a4c4df987ac5077f1cec202858be9.zip
Swap EVAC_WAIT_TIME to waitTime in _evac.gnut (#482)
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/evac/_evac.gnut4
1 files changed, 2 insertions, 2 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/evac/_evac.gnut b/Northstar.CustomServers/mod/scripts/vscripts/evac/_evac.gnut
index 4a21e6977..b1d8f6bd0 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/evac/_evac.gnut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/evac/_evac.gnut
@@ -268,8 +268,8 @@ void function Evac( int evacTeam, float initialWait, float arrivalTime, float wa
thread PlayAnim( dropship, "cd_dropship_rescue_side_idle", evacNode )
// eta until leave
- SetTeamActiveObjective( evacTeam, "EG_DropshipExtract2", Time() + EVAC_WAIT_TIME, file.evacIcon )
- SetTeamActiveObjective( GetOtherTeam( evacTeam ), "EG_StopExtract2", Time() + EVAC_WAIT_TIME, file.evacIcon )
+ SetTeamActiveObjective( evacTeam, "EG_DropshipExtract2", Time() + waitTime, file.evacIcon )
+ SetTeamActiveObjective( GetOtherTeam( evacTeam ), "EG_StopExtract2", Time() + waitTime, file.evacIcon )
// setup evac trigger
entity trigger = CreateEntity( "trigger_cylinder" )