vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local HealthFadeHook;
2 function HealthFade()
3 HealthFadeHook=HealthBar_OnValueChanged;
4 HealthBar_OnValueChanged=HealthFade_Smooth;
5 end
6  
7 function HealthFade_Smooth(value, smooth)
8 HealthFadeHook(value, 1); --sets smooth to true
9 end
10