diff options
author | Zanieon <william-millennium@hotmail.com> | 2024-07-07 00:06:51 +0200 |
---|---|---|
committer | Zanieon <william-millennium@hotmail.com> | 2024-07-07 00:06:51 +0200 |
commit | 2849218b47666c5611e3de591fc5f77a77a807eb (patch) | |
tree | b2c7b8145e7ded6ad5c5f221ab79be234de936ba | |
parent | 852f3bcb04f7dfbf8f41676d47c01d4d6fbf084e (diff) | |
download | NorthstarMods-2849218b47666c5611e3de591fc5f77a77a807eb.tar.gz NorthstarMods-2849218b47666c5611e3de591fc5f77a77a807eb.zip |
Fix formatting in dropship intro
taken from #809
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut | 4 |
1 files changed, 2 insertions, 2 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 7b6c7e9f..8b75a982 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 @@ -187,7 +187,7 @@ void function SpawnPlayerIntoDropship( entity player, int playerDropshipIndex, e } }) - HolsterAndDisableWeapons(player) + HolsterAndDisableWeapons( player ) player.DisableWeaponViewModel() // hide hud and fade screen out from black @@ -234,7 +234,7 @@ void function PlayerJumpsFromDropship( entity player ) // show weapon viewmodel and hud and let them move again player.MovementEnable() player.EnableWeaponViewModel() - DeployAndEnableWeapons(player) + DeployAndEnableWeapons( player ) RemoveCinematicFlag( player, CE_FLAG_CLASSIC_MP_SPAWNING ) } }) |