[7571] Implemented AttributesEx4 & 0x40 - SPELL_ATTR_EX4_NOT_STEALABLE

Flag has been verified by comparing 3.0.3 AttributesEx4 value of spell 55336 with 3.0.9 one
This commit is contained in:
arrai 2009-03-28 18:49:22 +01:00
parent 6762744452
commit bfbdb42309
3 changed files with 3 additions and 3 deletions

View file

@ -6414,7 +6414,7 @@ void Spell::EffectStealBeneficialBuff(uint32 i)
if (aur && (1<<aur->GetSpellProto()->Dispel) & dispelMask)
{
// Need check for passive? this
if (aur->IsPositive() && !aur->IsPassive())
if (aur->IsPositive() && !aur->IsPassive() && !(aur->GetSpellProto()->AttributesEx4 & SPELL_ATTR_EX4_NOT_STEALABLE))
steal_list.push_back(aur);
}
}