Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fixed channeling issue
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.wowinterface.com/oUF_BarFader-229/trunk@12 cbe42a47-3b53-4817-a5a9-47e79666164c
  • Loading branch information
p3lim-52096 committed Nov 24, 2008
1 parent d86f0e2 commit ee735eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oUF_BarFader/oUF_BarFader.lua
Expand Up @@ -37,7 +37,7 @@ local function UpdateElement(self)
elseif(UnitExists(self.unit..'target')) then
self:SetAlpha(self.BarFadeMaxAlpha or 1)
elseif(self.Castbar) then
self:SetAlpha(self.Castbar.casting and (self.BarFadeMaxAlpha or 1) or (self.BarFadeMinAlpha or 0.25))
self:SetAlpha((self.Castbar.casting or self.Castbar.channeling) and (self.BarFadeMaxAlpha or 1) or (self.BarFadeMinAlpha or 0.25))
elseif(self.unit == 'pet' and GetPetHappiness()) then
self:SetAlpha((GetPetHappiness() < 3) and (self.BarFadeMaxAlpha or 1) or (self.BarFadeMinAlpha or 0.25))
else
Expand Down

0 comments on commit ee735eb

Please sign in to comment.