Merge pull request #12092 from VOREStation/upstream-merge-8369

[MIRROR] Adds a roof to indoor rain sounds
This commit is contained in:
Casey
2022-01-28 22:20:30 +00:00
committed by CHOMPStation2
parent c9d879a156
commit cf831798bd
5 changed files with 14 additions and 7 deletions
+13 -6
View File
@@ -75,17 +75,24 @@
mid_sounds = list(
'sound/effects/weather/acidrain_mid.ogg' = 1
)
mid_length = 15 SECONDS // The lengths for the files vary, but the longest is ten seconds, so this will make it sound like intermittent wind.
mid_length = 15 SECONDS
start_sound = 'sound/effects/weather/acidrain_start.ogg'
start_length = 13 SECONDS
end_sound = 'sound/effects/weather/acidrain_end.ogg'
volume = 20
/datum/looping_sound/weather/rain/indoors
volume = 10
/datum/looping_sound/weather/rain/heavy
volume = 40
/datum/looping_sound/weather/rain/heavy/indoors
volume = 20
/datum/looping_sound/weather/rain/indoors
mid_sounds = list(
'sound/effects/weather/indoorrain_mid.ogg' = 1
)
mid_length = 15 SECONDS
start_sound = 'sound/effects/weather/indoorrain_start.ogg'
start_length = 13 SECONDS
end_sound = 'sound/effects/weather/indoorrain_end.ogg'
volume = 20 //Sound is already quieter in file
/datum/looping_sound/weather/rain/indoors/heavy
volume = 40