1774 | | if( // ignore positive and passive auras |
1775 | | !iter->second->IsPositive() && !iter->second->IsPassive() && |
1776 | | // only affect magic spells |
1777 | | iter->second->GetSpellProto()->DmgClass == SPELL_DAMAGE_CLASS_MAGIC && |
1778 | | // ignore immunity persistent spells |
1779 | | !( iter->second->GetSpellProto()->AttributesEx & 0x10000 ) ) |
| 1774 | if(// only affect magic spells |
| 1775 | iter->second->GetSpellProto()->DmgClass == SPELL_DAMAGE_CLASS_MAGIC |
| 1776 | // ignore positive and passive auras |
| 1777 | && !iter->second->IsPositive() && !iter->second->IsPassive()) |