[8536] Fixed spell 62776

Signed-off-by: Ambal <pogrebniak@gala.net>
This commit is contained in:
zergtmn 2009-09-25 20:05:03 +03:00 committed by tomrus88
parent 44ea1ee3e3
commit 76b0b9ace3
2 changed files with 9 additions and 1 deletions

View file

@ -348,8 +348,16 @@ void Spell::EffectSchoolDMG(uint32 effect_idx)
}
// Cataclysmic Bolt
case 38441:
{
damage = unitTarget->GetMaxHealth() / 2;
break;
}
// Tympanic Tantrum
case 62775:
{
damage = unitTarget->GetMaxHealth() / 10;
break;
}
}
break;
}