Skip to content

Commit

Permalink
[Statuses\Range] Fix For Classic
Browse files Browse the repository at this point in the history
  • Loading branch information
doadin committed Jul 26, 2024
1 parent 0604d6c commit 758b56b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Statuses/Range.lua
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ local function GroupRangeCheck(_, unit)
if UnitIsUnit(unit, "player") then
return true
elseif resSpell and UnitIsDead(unit) and not UnitIsDead("player") then
return IsSpellInRange(resSpell, unit)
if Plexus:IsRetailWow() then
return IsSpellInRange(resSpell, unit)
else
return IsSpellInRange(resSpell, unit) == 1
end
else
local inRange, checkedRange = UnitInRange(unit)
if checkedRange then
Expand Down

0 comments on commit 758b56b

Please sign in to comment.