Skip to content
This repository has been archived by the owner on Jun 2, 2021. It is now read-only.

Commit

Permalink
fix #350
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollyonn committed Sep 27, 2018
1 parent f585324 commit 56e5981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElvUI/modules/unitframes/elements/auras.lua
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ end
function UF:UpdateAuraTimer(elapsed)
if self.nextupdate > 0 then
self.nextupdate = self.nextupdate - elapsed
return
if self.nextupdate < 1 then return end
end

local _, _, _, _, _, duration, timeLeft = UnitAura(self:GetParent().__owner.unit, self:GetID(), self.filter)
Expand Down

0 comments on commit 56e5981

Please sign in to comment.