Skip to content

Commit

Permalink
Fix invert issue caused by latest update
Browse files Browse the repository at this point in the history
  • Loading branch information
tdymel committed Jun 26, 2017
1 parent 2b3ee5b commit db3022d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Auras.lua
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function MPOWA:OnUpdate(elapsed)
end
end
self:Flash(elapsed, cat, timeLeft)
if path["inverse"] and (path["buffname"] ~= "unitpower" and not path["inverse"]) then
if (path["inverse"] and path["buffname"] ~= "unitpower") then
self:FHide(cat)
else
if path["secsleft"] then
Expand Down
2 changes: 1 addition & 1 deletion Init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CreateFrame("Frame", "MPOWA", UIParent)
MPOWA.Build = 50
MPOWA.Build = 51
MPOWA.Cloaded = false
MPOWA.loaded = false
MPOWA.selected = 1
Expand Down

0 comments on commit db3022d

Please sign in to comment.