Skip to content

Commit

Permalink
[Aura] HAX
Browse files Browse the repository at this point in the history
Yes, this is ugly. Yes, blame Mystler. Yes, feel free to find a better way to address this but for some reason Subterfuge is always predicted to be up one GCD too long.
  • Loading branch information
Mystler committed Sep 6, 2018
1 parent 6a29dcc commit e1815e3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions HeroLib/Class/Unit/Aura.lua
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ function Unit:BuffRemains(Spell, AnyCaster, Offset)
if Offset then
ExpirationTime = HL.OffsetRemains(ExpirationTime, Offset)
end
if Spell:ID() == 115192 then
ExpirationTime = ExpirationTime - 0.3
end
local Remains = ExpirationTime - HL.GetTime()
return Remains >= 0 and Remains or 0
else
Expand Down

0 comments on commit e1815e3

Please sign in to comment.