Commit 657c10d1 authored by Ivaria's avatar Ivaria
Browse files

Fixed bug in VUHDO_isInSameZone helper - closes CurseForge ticket 336

parent d29c7483
......@@ -429,7 +429,7 @@ end
--
function VUHDO_isInSameZone(aUnit)
return (VUHDO_RAID[aUnit] or sEmpty)["map"] == (VUHDO_RAID["player"] or sEmpty)["map"];
return (VUHDO_RAID[aUnit] or sEmpty)["zone"] == (VUHDO_RAID["player"] or sEmpty)["zone"];
end
local VUHDO_isInSameZone = VUHDO_isInSameZone;
......
......@@ -2,6 +2,9 @@ Version 3.6.
Bugfixes:
-- Fixed bug where isInSameZone check always returned true
-- BuffWatch now correctly ignores other players outside the players zone
-- Global scanner perf bump when 'same zone' limit selected
-- Removed deprecated spells and abilities
-- Removed Death Knight spell Unholy Frenzy
-- Removed Druid spell Nourish
......@@ -46,6 +49,7 @@ Changes:
-- Updated Swiftmendable check to include units with Rejuvenation (Germination)
-- Updated Swiftmendable check to exclude others HoTs when Rampant Growth is selected
-- Updated toolbox helper function for GetTalentInfo API changes
-- Updated 'Spells > Keys global' edit box to properly decorate text
Features:
......
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