Commit 0f3102b2 authored by Ivaria's avatar Ivaria
Browse files

Fixed ToV Guarm 'Shadow Lick' debuff absorption tracking. Added additional...

Fixed ToV Guarm 'Shadow Lick' debuff absorption tracking. Added additional default custom debuffs for ToV raid encounters.
parent 79fcfabc
......@@ -357,7 +357,7 @@ VUHDO_SPELL_ID.DEBUFF_TOUCH_OF_HARM = VUHDO_getSpellInfo(180164);
VUHDO_SPELL_ID.DEBUFF_MARK_OF_DOOM = VUHDO_getSpellInfo(181099);
VUHDO_SPELL_ID.DEBUFF_MOMENTUM = VUHDO_getSpellInfo(198108);
VUHDO_SPELL_ID.DEBUFF_OVERFLOW = VUHDO_getSpellInfo(221772);
VUHDO_SPELL_ID.DEBUFF_SHADOW_LICK = VUHDO_getSpellInfo(228250);
VUHDO_SPELL_ID.DEBUFF_SHADOW_LICK = VUHDO_getSpellInfo(228253);
VUHDO_SPELL_ID.DEBUFF_CORRUPTED_AXION = VUHDO_getSpellInfo(232450);
......
......@@ -1394,6 +1394,20 @@ function VUHDO_loadDefaultConfig()
228519 -- Anchor Slam
);
-- 7.1 - Legion - Trial of Valor (part 2)
VUHDO_addCustomSpellIds(33,
-- [[ Trial of Valor ]]
-- Odyn
228918, -- Stormforged Spear
228914, -- Stormforged Spear
228932, -- Stormforged Spear
227811, -- Raging Tempest
-- Guarm
228253, -- Shadow Lick
-- Helya
232488 -- Dark Hatred
);
local debuffRemovalList = {};
for tIndex, tName in pairs(VUHDO_CONFIG["CUSTOM_DEBUFF"]["STORED"]) do
......
......@@ -49,7 +49,7 @@ local VUHDO_ABSORB_DEBUFFS = {
[221772] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_OVERFLOW)), 10 * 60; end, -- Mythic+ affix
-- Patch 7.1 - Legion - Trial of Valor
[228250] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_SHADOW_LICK)), 10 * 60; end, -- Shadow Lick
[228253] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_SHADOW_LICK)), 10 * 60; end, -- Shadow Lick
[232450] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_CORRUPTED_AXION)), 10 * 60; end, -- Corrupted Axion
--[79105] = function(aUnit) return 280000, 60 * 60; end, -- @TESTING PW:F
......
......@@ -17,9 +17,11 @@ Bugfixes:
-- Workaround for Blizzard bug in secure button onenter/onleave
-- Should improve sticking keybindings when off VuhDo frames
-- See: https://wow.curseforge.com/projects/vuhdo/issues/442
-- Fixed ToV Guarm 'Shadow Lick' debuff absorption tracking
Improvements:
-- Added additional default custom debuffs for ToV 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