Results: 2Comments by: hume
File: HealingEstimator03-25-08
Re: Re: Re: Re: Hmm ...
Posted By: hume
Originally posted by Dagma Because there is no longer any point in testing for "Unknown". Unless Blizzard changes their mind again, right? I realize I'm not going to convince you of anything, but it really doesn't make the code that much larger, doesn't increase execution time at all, and deals with a known odd behaviour Bli...
File: HealingEstimator02-07-08
Re: Re: Hmm ...
Posted By: hume
Originally posted by Dagma if (SpellName==nil and (SpellTarget==nil or UnitName("target")==nil)) then NOT if (SpellName==nil and (SpellTarget==nil or UnitName("target")=="Unknown")) then Why switch back and forth like that? Just test for both. if (SpellName == nil and (SpellTarget == nil or (UnitName("target") == n...