[svn] Remove unused script event functions HealBy and DamageDeal. Add new function SpellHitTarget.

Fix a bug in r57_trinity.sql.

--HG--
branch : trunk
This commit is contained in:
megamage
2008-10-18 11:50:02 -05:00
parent f141b156d5
commit a3e03f62d0
5 changed files with 11 additions and 17 deletions

View File

@@ -944,6 +944,9 @@ void Spell::DoAllEffectOnTarget(TargetInfo *target)
if(((Creature*)unit)->AI())
((Creature*)unit)->AI()->SpellHit(m_caster ,m_spellInfo);
}
if(m_caster->GetTypeId() == TYPEID_UNIT && ((Creature*)m_caster)->AI())
((Creature*)m_caster)->AI()->SpellHitTarget(unit, m_spellInfo);
}
void Spell::DoSpellHitOnUnit(Unit *unit, const uint32 effectMask)