Fix whitespace

This commit is contained in:
Parnic
2022-03-23 11:40:12 -05:00
parent c7c92d468e
commit 4007f1258b

View File

@ -329,18 +329,18 @@ function IceCore.prototype:Enable(userToggle)
local _,subevent,_,_,_,_,_,_,destName,_,_,spellId = CombatLogGetCurrentEventInfo()
if subevent == "SPELL_AURA_APPLIED" then
if destName == UnitName("player") then
if IceCore.zmPuzzleMap[spellId] then
self:Hide()
end
end
if destName == UnitName("player") then
if IceCore.zmPuzzleMap[spellId] then
self:Hide()
end
end
elseif subevent == "SPELL_AURA_REMOVED" then
if destName == UnitName("player") then
if IceCore.zmPuzzleMap[spellId] then
self:Show()
end
end
end
if destName == UnitName("player") then
if IceCore.zmPuzzleMap[spellId] then
self:Show()
end
end
end
end
end)