Adjust alert level volumes (#9145)

* Finally

* Requested adjustments
This commit is contained in:
Júlio César Ueti
2022-06-27 17:45:01 -03:00
committed by GitHub
parent 21b07b7b26
commit bda1999675
2 changed files with 13 additions and 4 deletions

View File

@@ -173,7 +173,7 @@ public sealed class AlertLevelSystem : EntitySystem
{ {
if (detail.Sound != null) if (detail.Sound != null)
{ {
SoundSystem.Play(detail.Sound.GetSound(), Filter.Broadcast()); SoundSystem.Play(detail.Sound.GetSound(), Filter.Broadcast(), detail.Sound.Params);
} }
else else
{ {

View File

@@ -27,20 +27,29 @@
gamma: gamma:
announcement: alert-level-gamma-announcement announcement: alert-level-gamma-announcement
selectable: false selectable: false
sound: /Audio/Misc/siren.ogg sound:
path: /Audio/Misc/siren.ogg
params:
volume: -2
disableSelection: true disableSelection: true
color: PaleVioletRed color: PaleVioletRed
delta: delta:
announcement: alert-level-delta-announcement announcement: alert-level-delta-announcement
selectable: false selectable: false
sound: /Audio/Misc/delta.ogg sound:
path: /Audio/Misc/delta.ogg
params:
volume: -5
disableSelection: true disableSelection: true
color: DarkRed color: DarkRed
shuttleTime: 1200 shuttleTime: 1200
epsilon: epsilon:
announcement: alert-level-epsilon-announcement announcement: alert-level-epsilon-announcement
selectable: false selectable: false
sound: /Audio/Misc/epsilon.ogg sound:
path: /Audio/Misc/epsilon.ogg
params:
volume: -2
disableSelection: true disableSelection: true
color: DarkViolet color: DarkViolet
shuttleTime: 1200 shuttleTime: 1200