Skip to content

Commit

Permalink
bugfix: Fix file reference path
Browse files Browse the repository at this point in the history
  • Loading branch information
IronSinew committed Apr 19, 2023
1 parent f4f8a75 commit aa070be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aa070be

Please sign in to comment.