From 054480addde3825dcf4e7b9976a73e1f22615e27 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Thu, 30 Oct 2025 16:38:15 -0400 Subject: [PATCH] fixed sound arguments (#18713) --- code/modules/instruments/songs/play_synthesized.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/instruments/songs/play_synthesized.dm b/code/modules/instruments/songs/play_synthesized.dm index 2fcf079437..a450eb098a 100644 --- a/code/modules/instruments/songs/play_synthesized.dm +++ b/code/modules/instruments/songs/play_synthesized.dm @@ -67,7 +67,7 @@ var/pref_volume = M?.client?.prefs.read_preference(/datum/preference/numeric/volume/sound_instruments) if(!pref_volume) continue - M.playsound_local(get_turf(parent), null, volume * (pref_volume/100), FALSE, K.frequency, null, channel, null, copy) + M.playsound_local(get_turf(parent), null, volume * (pref_volume/100), FALSE, K.frequency, channel = channel, S = copy) // Could do environment and echo later but not for now /**