From 487a194274bffd7268b62cf85c5e05f9c02e77c3 Mon Sep 17 00:00:00 2001 From: Lucy Date: Wed, 29 May 2024 14:23:45 -0400 Subject: [PATCH] The "weather" sound mixer volume now actually affects weather. (#1981) --- monkestation/code/datums/looping_sounds/weather.dm | 14 ++++++++++++++ tgstation.dme | 1 + 2 files changed, 15 insertions(+) create mode 100644 monkestation/code/datums/looping_sounds/weather.dm diff --git a/monkestation/code/datums/looping_sounds/weather.dm b/monkestation/code/datums/looping_sounds/weather.dm new file mode 100644 index 000000000000..b5aee6dab4ca --- /dev/null +++ b/monkestation/code/datums/looping_sounds/weather.dm @@ -0,0 +1,14 @@ +/datum/looping_sound/active_outside_ashstorm + channel = CHANNEL_WEATHER + +/datum/looping_sound/active_inside_ashstorm + channel = CHANNEL_WEATHER + +/datum/looping_sound/weak_outside_ashstorm + channel = CHANNEL_WEATHER + +/datum/looping_sound/weak_inside_ashstorm + channel = CHANNEL_WEATHER + +/datum/looping_sound/void_loop + channel = CHANNEL_WEATHER diff --git a/tgstation.dme b/tgstation.dme index 909e06a8f4ab..4fb2152e1028 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -5741,6 +5741,7 @@ #include "monkestation\code\datums\keybinding\carbon.dm" #include "monkestation\code\datums\keybinding\communication.dm" #include "monkestation\code\datums\keybinding\living.dm" +#include "monkestation\code\datums\looping_sounds\weather.dm" #include "monkestation\code\datums\mind\_mind.dm" #include "monkestation\code\datums\quirks\negative_quirks.dm" #include "monkestation\code\datums\quirks\neutral_quirks.dm"