From 7bf5b21b6df017ebceefe4a833a8aeca09502024 Mon Sep 17 00:00:00 2001 From: Oarcinae Date: Tue, 3 Dec 2024 18:55:51 -0500 Subject: [PATCH] Fix incorrect sound filename. --- lib/oarc_utils.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oarc_utils.lua b/lib/oarc_utils.lua index 887920b..dd72547 100644 --- a/lib/oarc_utils.lua +++ b/lib/oarc_utils.lua @@ -464,7 +464,7 @@ function ShareChatBetweenForces(player, msg) (force.name ~= "player") and (force ~= player.force)) then CompatSend(force, {"", player.name, ": ", msg}, { color = player.color, sound = defines.print_sound.never}) - force.play_sound{ path = "utility/chat_message", volume_modifier = 1 } + force.play_sound{ path = "utility/scenario_message", volume_modifier = 1 } end end end