*Fix typos in Guardian Spirit code.

--HG--
branch : trunk
This commit is contained in:
QAston
2009-03-08 22:03:25 +01:00
parent 7289f5b36d
commit 1e1d95fe3a

View File

@@ -2003,16 +2003,15 @@ void Unit::CalcAbsorbResist(Unit *pVictim,SpellSchoolMask schoolMask, DamageEffe
case SPELLFAMILY_PRIEST:
{
// Guardian Spirit
if (spellProto->SpellFamilyFlags.IsEqual(0x400, 0, 0xC0000000))
if (spellProto->Id==47788)
{
if (pVictim->GetHealth() <= RemainingDamage) // Killing Blow
{
healAmount = pVictim->GetMaxHealth();
healAmount = pVictim->GetMaxHealth()/2;
healCaster = pVictim;
healSpell = 48153;
currentAbsorb = mod->m_amount;
RemainingDamage=0;
break;
}
}