From b13ee96e8d682b4b255b2d600ac0cc87c488db6c Mon Sep 17 00:00:00 2001 From: Parnic Date: Sat, 24 Apr 2010 14:49:46 +0000 Subject: [PATCH] - reverted r500 because it was causing taint --- modules/PlayerHealth.lua | 3 ++- modules/TargetHealth.lua | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/PlayerHealth.lua b/modules/PlayerHealth.lua index 7c8c81d..429e387 100644 --- a/modules/PlayerHealth.lua +++ b/modules/PlayerHealth.lua @@ -1183,7 +1183,7 @@ function PlayerHealth.prototype:UpdateBar(scale, color, alpha) if self.healFrame and self.healFrame.bar then self.healFrame.bar:SetVertexColor(self:GetColor("PlayerHealthHealAmount", self.alpha * self.moduleSettings.healAlpha)) end - +--[[ seems to be causing taint. oh well if self.frame.button then if self.alpha == 0 then self.frame.button:Hide() @@ -1191,6 +1191,7 @@ function PlayerHealth.prototype:UpdateBar(scale, color, alpha) self.frame.button:Show() end end +]] end -- Load us up diff --git a/modules/TargetHealth.lua b/modules/TargetHealth.lua index 179bc5f..e252972 100644 --- a/modules/TargetHealth.lua +++ b/modules/TargetHealth.lua @@ -895,7 +895,7 @@ end function IceTargetHealth.prototype:UpdateBar(scale, color, alpha) IceTargetHealth.super.prototype.UpdateBar(self, scale, color, alpha) - +--[[ seems to be causing taint. oh well if self.frame.button then if self.alpha == 0 then self.frame.button:Hide() @@ -903,6 +903,7 @@ function IceTargetHealth.prototype:UpdateBar(scale, color, alpha) self.frame.button:Show() end end +]] end