Commit da4faab3 authored by Ivaria's avatar Ivaria
Browse files

Update classic compat layer for UnitGetTotalHealAbsorbs

parent 6984a7d1
......@@ -42,7 +42,7 @@ local VUHDO_INTERNAL_TOGGLES;
local strfind = strfind;
local GetRaidTargetIndex = GetRaidTargetIndex;
local UnitGetTotalHealAbsorbs = UnitGetTotalHealAbsorbs;
local UnitGetTotalHealAbsorbs = VUHDO_unitGetTotalHealAbsorbs;
local pairs = pairs;
local twipe = table.wipe;
local format = format;
......
......@@ -1211,6 +1211,18 @@ end
function VUHDO_unitGetTotalHealAbsorbs(...)
if not UnitGetTotalHealAbsorbs then
return 0;
else
return UnitGetTotalHealAbsorbs(...);
end
end
function VUHDO_unitIsWarModePhased(...)
if not UnitIsWarModePhased then
......
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