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)/

(based on cmangos/mangos-classic@955a871)

Signed-off-by: Cala <calaftp@free.fr>

(based on cmangos/mangos-tbc@b84c0c8)

Signed-off-by: Cala <calaftp@free.fr>
  • Loading branch information
cala committed Dec 19, 2016
1 parent f5950f9 commit a229bd7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/game/SpellAuras.cpp
Expand Up @@ -2648,6 +2648,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 a229bd7

Please sign in to comment.