From d8cfe39ea0c6139ebb05393985e63d230f693e48 Mon Sep 17 00:00:00 2001 From: funkydude Date: Sat, 27 Jan 2024 17:19:32 +0000 Subject: [PATCH] BlackfathomDeeps_Classic/Akumai: Fix using a wrong option key for playing a sound --- BlackfathomDeeps_Classic/Akumai.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BlackfathomDeeps_Classic/Akumai.lua b/BlackfathomDeeps_Classic/Akumai.lua index db46c1c..298ac1e 100644 --- a/BlackfathomDeeps_Classic/Akumai.lua +++ b/BlackfathomDeeps_Classic/Akumai.lua @@ -91,7 +91,7 @@ function mod:CorrosionOrShadowSeepApplied(args) local amount = args.amount or 1 self:StackMessage(args.spellId, "blue", args.destName, amount, 3) if amount >= 3 then - self:PlaySound("stages", "alarm", nil, args.destName) + self:PlaySound(args.spellId, "alarm", nil, args.destName) end end end