diff options
author | William Miller <william-millennium@hotmail.com> | 2024-07-08 05:52:50 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 10:52:50 +0200 |
commit | e76789be99d43242bb06e148c1e32485217ce79a (patch) | |
tree | fa1e4faea5b493163c71fbd4960beea32d88f9d2 | |
parent | bfadbc4d598d595aef02034c1b63e614b164567e (diff) | |
download | NorthstarMods-1.26.3-rc2.tar.gz NorthstarMods-1.26.3-rc2.zip |
Hotfix for Intro Dropship (#816)v1.26.3-rc2v1.26.2
to fix script error
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut b/Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut index 5ab14121..c3bdf01c 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut +++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut @@ -196,7 +196,7 @@ void function SpawnPlayerIntoDropship( entity player, int playerDropshipIndex, e AddCinematicFlag( player, CE_FLAG_CLASSIC_MP_SPAWNING ) ScreenFadeFromBlack( player, 0.5, 0.5 ) // faction leaders are done clientside, spawn them here - Remote_CallFunction_NonReplay( player, "ServerCallback_SpawnFactionCommanderInDropship", playerDropship.dropship.GetEncodedEHandle(), file.introStartTime ) + Remote_CallFunction_NonReplay( player, "ServerCallback_SpawnFactionCommanderInDropship", playerDropship.GetEncodedEHandle(), file.introStartTime ) // do firstperson sequence FirstPersonSequenceStruct idleSequence |