From 44458c6984fe61f9ecea020971ef567eb5e557a5 Mon Sep 17 00:00:00 2001 From: Adrian L Lange Date: Mon, 7 Nov 2016 16:45:44 +0100 Subject: [PATCH] Add the expiration time to hasPending on combat res spells Fixes #11 --- LibResInfo-1.0.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibResInfo-1.0.lua b/LibResInfo-1.0.lua index 56bf720..589dfbe 100644 --- a/LibResInfo-1.0.lua +++ b/LibResInfo-1.0.lua @@ -626,7 +626,7 @@ function eventFrame:UNIT_AURA(event, unit) -- Rebirth, Raise Dead, Soulstone and Eternal Guardian leaves a debuff on the resurrected target local resurrecting, _, _, _, _, _, expires = UnitAura(unit, RESURRECTING, nil, "HARMFUL") if resurrecting ~= hasPending[guid] then - hasPending[guid] = resurrecting + hasPending[guid] = expires debug(1, ">> ResPending", nameFromGUID[guid], RESURRECTING) callbacks:Fire("LibResInfo_ResPending", unit, guid, expires) end