diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-28 03:26:44 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-28 03:26:44 +0000 |
commit | 2b36b0e923069904980639a04634cab923487a3b (patch) | |
tree | bc504a2d3cb39bddeb2b6ea7f4227cd3e3f813e1 /Northstar.Custom/mod/scripts/vscripts | |
parent | 65b0093882edd9b8b9d819fd9b11cb6be7d9eb2c (diff) | |
download | NorthstarMods-2b36b0e923069904980639a04634cab923487a3b.tar.gz NorthstarMods-2b36b0e923069904980639a04634cab923487a3b.zip |
fix hide and seek noises being too common and some general disconnection checks
Diffstat (limited to 'Northstar.Custom/mod/scripts/vscripts')
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_hs.gnut | 4 |
1 files changed, 2 insertions, 2 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 ) } } |