Commit 1347938c authored by Ivaria's avatar Ivaria
Browse files

Fixed Swiftmendable bouquet validator when using L100 talent Rampant Growth

parent a72c3ef3
......@@ -560,8 +560,11 @@ local function VUHDO_updateHots(aUnit, anInfo)
if VUHDO_SPELL_ID.REGROWTH == tBuffName or VUHDO_SPELL_ID.REJUVENATION == tBuffName or VUHDO_SPELL_ID.GERMINATION == tBuffName then
tStart, tSmDuration, tEnabled = GetSpellCooldown(VUHDO_SPELL_ID.SWIFTMEND);
if tEnabled ~= 0 and (tStart == nil or tSmDuration == nil or tStart <= 0 or tSmDuration <= 1.6) then
if not tIsCastByPlayer and VUHDO_hasTalentRampantGrowth() then
sIsSwiftmend = false;
-- L100 talent makes a unit swiftmendable only with OWN hots
if VUHDO_hasTalentRampantGrowth() then
if tIsCastByPlayer then
sIsSwiftmend = true;
end
else
sIsSwiftmend = true;
end
......
......@@ -19,6 +19,7 @@ Bugfixes:
-- Added all of Mar'gok's variations of Arcane Wrath as default custom debuffs
-- Fixed GCD bar display for Discipline and Shadow Priests
-- Fixed cluster builder calling methods on forbidden frames (eg. in-game store)
-- Fixed Swiftmendable bouquet validator when using L100 talent Rampant Growth
Improvements:
......
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