From aa070be2b588c8e9d654c0c753d93e887eafebd4 Mon Sep 17 00:00:00 2001 From: Blake Severson Date: Wed, 19 Apr 2023 07:25:22 -0700 Subject: [PATCH] bugfix: Fix file reference path --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 3a14df0..2d6318a 100644 --- a/main.lua +++ b/main.lua @@ -78,7 +78,7 @@ function f:COMBAT_LOG_EVENT_UNFILTERED(...) if critical and sourceGUID == playerGUID then local currentTime = time() if (lastCritTime + self.options.debounce <= currentTime and self.options.playsSound) then - PlaySoundFile("Interface\\AddOns\\WowICrit\\sounds\\"..tostring(math.random(1,17))..".mp3","master") + PlaySoundFile("Interface\\AddOns\\CritWow\\sounds\\"..tostring(math.random(1,17))..".mp3","master") lastCritTime = currentTime end end