Commit 27b9ca76 authored by Ivaria's avatar Ivaria
Browse files

Force a fallback to LibHealComm-4.0 for now given Blizzard API remains broken

parent 30fa4e56
......@@ -548,7 +548,7 @@ local VUHDO_DEFAULT_CONFIG = {
["SHOW_OVERHEAL"] = true,
["SHOW_OWN_INCOMING"] = true,
["SHOW_TEXT_OVERHEAL"] = true,
["SHOW_LIBHEALCOMM_INCOMING"] = false,
["SHOW_LIBHEALCOMM_INCOMING"] = true,
["SHOW_SHIELD_BAR"] = true,
["SHOW_OVERSHIELD_BAR"] = false,
["SHOW_HEAL_ABSORB_BAR"] = true,
......
......@@ -1184,7 +1184,7 @@ function VUHDO_unitGetIncomingHeals(aUnit, aCasterUnit)
return 0;
end
if VUHDO_LibHealComm and VUHDO_CONFIG["SHOW_LIBHEALCOMM_INCOMING"] then
if VUHDO_LibHealComm and (VUHDO_CONFIG["SHOW_LIBHEALCOMM_INCOMING"] or true) then
local tTargetGUID = UnitGUID(aUnit);
if aCasterUnit 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