Makes the uplink purchase sound much quieter (#5989)

This commit is contained in:
Rane 2022-01-01 21:00:01 -05:00 committed by GitHub
parent 0b8233909c
commit 37b510901f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ namespace Content.Server.Traitor.Uplink
}
SoundSystem.Play(Filter.SinglePlayer(message.Session), uplink.BuySuccessSound.GetSound(),
uplink.Owner, AudioParams.Default.WithVolume(-2f));
uplink.Owner, AudioParams.Default.WithVolume(-8f));
RaiseNetworkEvent(new UplinkBuySuccessMessage(), message.Session.ConnectedClient);
}
@ -158,7 +158,7 @@ namespace Content.Server.Traitor.Uplink
// play buying sound
SoundSystem.Play(Filter.SinglePlayer(args.Session), uplink.BuySuccessSound.GetSound(),
uplink.Owner, AudioParams.Default.WithVolume(-2f));
uplink.Owner, AudioParams.Default.WithVolume(-8f));
UpdateUserInterface(uplink);
}