Core/Auras: Implemented new spell_area flag to allow skipping applying aura automatically when quest status changes

This commit is contained in:
hondacrx
2018-04-28 11:40:00 -04:00
parent fc237004f2
commit aac1d9c6fb
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1809,7 +1809,7 @@ namespace Game.Entities
{
if (spell.flags.HasAnyFlag(SpellAreaFlag.AutoRemove) && !spell.IsFitToRequirements(this, zone, area))
RemoveAurasDueToSpell(spell.spellId);
else if (spell.flags.HasAnyFlag(SpellAreaFlag.AutoCast))
else if (spell.flags.HasAnyFlag(SpellAreaFlag.AutoCast) && !spell.flags.HasAnyFlag(SpellAreaFlag.IgnoreAutocastOnQuestStatusChange))
if (!HasAura(spell.spellId))
CastSpell(this, spell.spellId, true);
}