- don't auto-hide the incoming heal bar when LibHealComm isn't available if the user is on 4.0

This commit is contained in:
Parnic
2010-10-09 05:50:08 +00:00
parent 0186185192
commit f357dac2bf

View File

@ -888,7 +888,7 @@ function PlayerHealth.prototype:CreateHealBar()
self:UpdateBar(1, "undef")
if not self.moduleSettings.showIncomingHeals or not HealComm then
if not self.moduleSettings.showIncomingHeals or (IceHUD.WowVer < 40000 and not HealComm) then
self.healFrame.bar:Hide()
end
end