Reduces event volume by four decibels (#12442)

This commit is contained in:
T-Stalker
2022-11-07 23:35:10 -03:00
committed by GitHub
parent d5b892ff3e
commit f81ef8357f
2 changed files with 7 additions and 1 deletions

View File

@@ -105,7 +105,7 @@ namespace Content.Server.StationEvents.Events
_announceCancelToken = new CancellationTokenSource();
Timer.Spawn(3000, () =>
{
_audioSystem.PlayGlobal("/Audio/Announcements/power_on.ogg", Filter.Broadcast());
_audioSystem.PlayGlobal("/Audio/Announcements/power_on.ogg", Filter.Broadcast(), AudioParams.Default.WithVolume(-4f));
}, _announceCancelToken.Token);
_unpowered.Clear();