Gilderoy
New Member
- Joined
- May 10, 2010
- Messages
- 761
- Reaction score
- 16
Hello!
so with the old guy this code
Worked very well, now instead is returning false on things that are magic (like fear, polymorph ecc) and true on things that are not magic (like mangle, hemorrage ecc)
so is the feature broken or?
in fact for fear (ad example) t.ToString() give None
so with the old guy this code
Code:
foreach (WoWAura a in p.ActiveAuras.Values)
{
WoWDispelType t = a.Spell.DispelType;
if (t == WoWDispelType.Disease || t == WoWDispelType.Magic || t == WoWDispelType.Poison)
{
return true;
}
so is the feature broken or?
in fact for fear (ad example) t.ToString() give None
Last edited: