Commit 39f5ab35 authored by Ivaria's avatar Ivaria
Browse files

Fixed error on level up where VuhDo would try to handle specialization changes...

Fixed error on level up where VuhDo would try to handle specialization changes while still in combat lockdown
parent 509d34a8
......@@ -646,8 +646,8 @@ function VUHDO_OnEvent(_, anEvent, anArg1, anArg2, anArg3, anArg4, anArg5, anArg
elseif "PET_BATTLE_CLOSE" == anEvent then
VUHDO_setPetBattle(false);
elseif "ACTIVE_TALENT_GROUP_CHANGED" == anEvent then
if VUHDO_VARIABLES_LOADED then
elseif "PLAYER_SPECIALIZATION_CHANGED" == anEvent then
if VUHDO_VARIABLES_LOADED and not InCombatLockdown() then
VUHDO_activateSpecc(tostring(GetSpecialization()) or "1");
end
......@@ -1432,7 +1432,7 @@ local VUHDO_ALL_EVENTS = {
"PET_BATTLE_CLOSE", "PET_BATTLE_OPENING_START",
"PLAYER_REGEN_ENABLED", "PLAYER_REGEN_DISABLED",
"UNIT_ABSORB_AMOUNT_CHANGED",
"ACTIVE_TALENT_GROUP_CHANGED"
"PLAYER_SPECIALIZATION_CHANGED",
};
......
......@@ -15,14 +15,16 @@ Known issues:
Bugfixes:
-- Priest 'Purge the Wicked' can be directly assigned as a spell bind again
-- Fixed HoT clock start time rounding error
-- Fixed error on level up where VuhDo would try to handle specialization
-- changes while still in combat lockdown
Improvements:
-- Added Priest 'Clarity of Will' as a default HoT icon option
-- Custom flag bouquet validator now listens for VUHDO_UPDATE_NUM_CLUSTER
-- Only explicitly refresh a whitelist of auras (eg. 'Atonement')
-- and listen for all SPELL_AURA_ events not just APPLIED so the updates
-- and consistently immediate
-- Only explicitly refresh an auras if it is whitelisted (eg. 'Atonement')
-- and listen for all SPELL_AURA events not just APPLIED so the updates
-- are consistently immediate
--------------------------------------------------------------
......
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