Commit 2617a0b3 authored by Ivaria's avatar Ivaria
Browse files

Fixed debuff absorption tracking for Nighthold 'Time Release'. Added more...

Fixed debuff absorption tracking for Nighthold 'Time Release'. Added more default custom debuffs for Nighthold raid encounters.
parent 5f5df991
......@@ -1508,6 +1508,17 @@ function VUHDO_loadDefaultConfig()
208802 -- Soul Corrosion
);
-- 7.1.5 - Legion - Nighthold (part 2)
VUHDO_addCustomSpellIds(35,
-- [[ Nighthold ]]
-- Chronomatic Anomaly
219964, -- Time Release Green
219965, -- Time Release Yellow
219966 -- Time Release Red
-- Trilliax
-- Grand Magistrix Elisande
);
local debuffRemovalList = {};
for tIndex, tName in pairs(VUHDO_CONFIG["CUSTOM_DEBUFF"]["STORED"]) do
......
......@@ -53,6 +53,9 @@ local VUHDO_ABSORB_DEBUFFS = {
-- Patch 7.1.5 - Legion - Nighthold
[206609] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_TIME_RELEASE)), 10 * 60; end, -- Chronomatic Anomaly Time Release
[219964] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_TIME_RELEASE)), 10 * 60; end, -- Chronomatic Anomaly Time Release Geen
[219965] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_TIME_RELEASE)), 10 * 60; end, -- Chronomatic Anomaly Time Release Yellow
[219966] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_TIME_RELEASE)), 10 * 60; end, -- Chronomatic Anomaly Time Release Red
--[79105] = function(aUnit) return 280000, 60 * 60; end, -- @TESTING PW:F
};
......
......@@ -15,11 +15,13 @@ Known issues:
Bugfixes:
-- Fixed spell trace tracking for periodic heals (eg. 'Healing Rain')
-- Fixed debuff absorption tracking for Nighthold 'Time Release'
Improvements:
-- Added bouquet validator 'Statusbar: Mana % (Healer Only)'
-- Added default bouquet 'Manabars: Mana (Healer Only)'
-- Added more default custom debuffs for Nighthold raid encounters
--------------------------------------------------------------
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment