From 776d7ba35cb08991b1a2c16b0a27e32d364f6ef3 Mon Sep 17 00:00:00 2001 From: jordon <29447509+jordonwow@users.noreply.github.com> Date: Mon, 21 Mar 2022 20:35:39 -0700 Subject: [PATCH] fix variable shadowing --- BigDebuffs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BigDebuffs.lua b/BigDebuffs.lua index 00ba91f..b749aec 100755 --- a/BigDebuffs.lua +++ b/BigDebuffs.lua @@ -1561,7 +1561,7 @@ if WOW_PROJECT_ID == WOW_PROJECT_MAINLINE then end end if not doneWithDispelDebuffs then - local debuffType = select(4, ...); + debuffType = select(4, ...); if ( dispellableDebuffTypes[debuffType] and not frame["hasDispel"..debuffType] ) then frame["hasDispel"..debuffType] = true; numUsedDispelDebuffs = numUsedDispelDebuffs + 1;