Skip to content

Commit

Permalink
Core/Spells: Fix Spinning Pain Spike damage
Browse files Browse the repository at this point in the history
  • Loading branch information
Jildor committed Mar 12, 2012
1 parent c0165ec commit eca5c77
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/server/game/Spells/SpellEffects.cpp
Expand Up @@ -396,6 +396,12 @@ void Spell::EffectSchoolDMG(SpellEffIndex effIndex)
damage = unitTarget->CountPctFromMaxHealth(50);
break;
}
// Spinning Pain Spike
case 66316:
{
damage = unitTarget->CountPctFromMaxHealth(100);
break;
}
case 20625: // Ritual of Doom Sacrifice
case 29142: // Eyesore Blaster
case 35139: // Throw Boom's Doom
Expand Down

0 comments on commit eca5c77

Please sign in to comment.