Skip to content

Commit

Permalink
fix luacheck error
Browse files Browse the repository at this point in the history
  • Loading branch information
wardz committed Apr 23, 2023
1 parent d9412ca commit f30ac87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ClassicCastbars/ClassicCastbars.lua
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,8 @@ function addon:COMBAT_LOG_EVENT_UNFILTERED()
local buffCacheHit = libCD.buffCache[dstGUID]
if buffCacheHit then
for i = 1, #buffCacheHit do
local spellName = buffCacheHit[i].name
if castImmunityBuffs[spellName] then
local name = buffCacheHit[i].name
if castImmunityBuffs[name] then
return
end
end
Expand Down

0 comments on commit f30ac87

Please sign in to comment.