From e1815e3e553480261b81551c28095c0a21e239bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Mei=C3=9Fner?= Date: Thu, 6 Sep 2018 16:49:02 +0200 Subject: [PATCH] [Aura] HAX 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. --- HeroLib/Class/Unit/Aura.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HeroLib/Class/Unit/Aura.lua b/HeroLib/Class/Unit/Aura.lua index ec736c32..77f1f8dd 100755 --- a/HeroLib/Class/Unit/Aura.lua +++ b/HeroLib/Class/Unit/Aura.lua @@ -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