[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 Ambal
parent b72fe466e1
commit 19e28af2f0
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;
}