nameplates: switch to libhealth by name function

This commit is contained in:
shagu
2020-05-03 13:30:53 +02:00
parent 241272748a
commit 267c38ab11
+11 -4
View File
@@ -394,11 +394,18 @@ pfUI:RegisterModule("nameplates", "vanilla:tbc", function ()
plate.health:SetValue(hp)
if C.nameplates.showhp == "1" then
local realhp, realhpmax
if pfUI.libhealth and pfUI.libhealth.enabled then
realhp, realhpmax = pfUI.libhealth:GetDBHealth(name .. ":" .. level)
local rhp, rhpmax, estimated
if hpmax > 100 then
rhp, rhpmax = hp, hpmax
elseif pfUI.libhealth and pfUI.libhealth.enabled then
rhp, rhpmax, estimated = pfUI.libhealth:GetUnitHealthByName(name,level,tonumber(hp),tonumber(hpmax))
end
if estimated or hpmax > 100 then
plate.health.text:SetText(string.format("%s / %s", Abbreviate(rhp), Abbreviate(rhpmax)))
else
plate.health.text:SetText(string.format("%s%%", hp))
end
plate.health.text:SetText(string.format("%s / %s", realhp and ceil(realhp*hp) or hp, realhpmax or hpmax))
else
plate.health.text:SetText()
end