From 0003ef1d387d797be553a945c67ff11823ebde8d Mon Sep 17 00:00:00 2001 From: Lucy Date: Sun, 27 Oct 2024 18:53:39 -0400 Subject: [PATCH] Default to `CHANNEL_SOUND_EFFECTS` --- monkestation/code/game/objects/items.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/monkestation/code/game/objects/items.dm b/monkestation/code/game/objects/items.dm index 127740b6834b..165b8c3fcfb0 100644 --- a/monkestation/code/game/objects/items.dm +++ b/monkestation/code/game/objects/items.dm @@ -1,10 +1,10 @@ /obj/item /// If specified, the pickup sound will use this mixer channel. - var/pickup_mixer_channel + var/pickup_mixer_channel = CHANNEL_SOUND_EFFECTS /// If specified, the drop sound will use this mixer channel. - var/drop_mixer_channel + var/drop_mixer_channel = CHANNEL_SOUND_EFFECTS /// If specified, the equip sound will use this mixer channel. - var/equip_mixer_channel + var/equip_mixer_channel = CHANNEL_SOUND_EFFECTS /obj/item/proc/adjust_weight_class(amt, min_weight = WEIGHT_CLASS_TINY, max_weight = WEIGHT_CLASS_GIGANTIC) if(!amt || !isnum(amt))