aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorx3Karma <juliuslimck@gmail.com>2022-08-11 21:09:02 +0800
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-08-14 15:05:28 +0200
commitf294ee224321a934b5a53ccdc135070e855417b4 (patch)
tree976fd7b0d5817a912412b5e85b32c6aaa2b12e66
parent53c91dd55ff55f1f5ce3820082fd76ac9d9a7477 (diff)
downloadNorthstarMods-1.9.4.tar.gz
NorthstarMods-1.9.4.zip
Swap EVAC_WAIT_TIME to waitTime in _evac.gnut (#482)v1.9.4-rc1v1.9.4
-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" )