diff options
Diffstat (limited to 'Northstar.Custom/mod/scripts')
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_hs.gnut | 4 | ||||
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/sh_3psequence_to_1p_hacks.gnut | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_hs.gnut b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_hs.gnut index ed245152..4fb45a74 100644 --- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_hs.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_hs.gnut @@ -184,8 +184,8 @@ void function PlayHintSoundsForHider( entity player ) while ( true ) { - wait 1.0 - EmitSoundOnEntity( player, "weapon_chargerifle_fire_3p" ) + wait 60.0 + EmitSoundOnEntityToTeamExceptPlayer( player, "weapon_chargerifle_fire_3p", HIDEANDSEEK_TEAM_SEEKER, null ) } } diff --git a/Northstar.Custom/mod/scripts/vscripts/sh_3psequence_to_1p_hacks.gnut b/Northstar.Custom/mod/scripts/vscripts/sh_3psequence_to_1p_hacks.gnut index 3d7e65aa..abfd269a 100644 --- a/Northstar.Custom/mod/scripts/vscripts/sh_3psequence_to_1p_hacks.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/sh_3psequence_to_1p_hacks.gnut @@ -148,7 +148,8 @@ void function CleanupForced1PSequenceAfterAnimDone( FirstPersonSequenceStruct se OnThreadEnd( function() : ( cleanupData ) { - CleanupForced1PSequence( cleanupData ) + if ( IsValid( cleanupData.player ) ) + CleanupForced1PSequence( cleanupData ) }) FirstPersonSequence( sequence, player, other ) |