Skip to content

Commit

Permalink
Handle dummy aura for spell 17189
Browse files Browse the repository at this point in the history
* Ras Frostwhisper is healed to full health when turned back into a
human (effect occurs at the end of the channel when aura is removed)/
  • Loading branch information
cala committed Dec 14, 2016
1 parent b108675 commit 955a871
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/game/SpellAuras.cpp
Expand Up @@ -1269,6 +1269,11 @@ void Aura::HandleAuraDummy(bool apply, bool Real)

return;
}
case 17189: // Frostwhisper's Lifeblood
// Ras Frostwhisper gets back to full health when turned to his human form
if (Unit* caster = GetCaster())
caster->ModifyHealth(caster->GetMaxHealth() - caster->GetHealth());
return;
case 28169: // Mutating Injection
{
// Mutagen Explosion
Expand Down

0 comments on commit 955a871

Please sign in to comment.