aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-31 21:33:39 +0000
committerGitHub <noreply@github.com>2021-12-31 21:33:39 +0000
commit2b9a541cf6fadfb16e934268c8e1c8b2069a1fc2 (patch)
treebd58b4d5a4f697ca476df137e9332fde4ad5d53b /Northstar.CustomServers
parent5d9c4bd51e62d6708b81ab6bce1ae1b3784f23fa (diff)
parentccfe7e2306e98a6b0a7a8bc89cb19ebc3e8a25dd (diff)
downloadNorthstarMods-2b9a541cf6fadfb16e934268c8e1c8b2069a1fc2.tar.gz
NorthstarMods-2b9a541cf6fadfb16e934268c8e1c8b2069a1fc2.zip
Merge pull request #45 from abarichello/fix/wargames-intro-offhand-weapon
Disable offhand weapons during wargames intro
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut2
1 files changed, 2 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut
index 4659dcb0b..11587947f 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut
@@ -188,6 +188,7 @@ void function PlayerWatchesWargamesIntro( entity player )
player.kv.VisibilityFlags = ENTITY_VISIBLE_TO_EVERYONE
ClearPlayerAnimViewEntity( player )
player.EnableWeaponViewModel()
+ DeployAndEnableWeapons(player)
player.ClearParent()
player.UnforceStand()
player.MovementEnable()
@@ -224,6 +225,7 @@ void function PlayerWatchesWargamesIntro( entity player )
player.kv.VisibilityFlags = ENTITY_VISIBLE_TO_OWNER
TrainingPod_ViewConeLock_PodClosed( player )
player.DisableWeaponViewModel()
+ HolsterAndDisableWeapons(player)
player.MovementDisable()
player.SetInvulnerable()