diff options
-rw-r--r-- | src/game/SpellAuras.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 93d81d41aa5..e50c4432541 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1368,8 +1368,13 @@ void Aura::TriggerSpell() } break; // // Steam Tank Passive // case 27747: break; -// // Frost Blast -// case 27808: break; + // Frost Blast + case 27808: + { + int32 bpDamage = target->GetMaxHealth()*26/100; + caster->CastCustomSpell(target,29879,&bpDamage,NULL,NULL,true,NULL,this); + return; + } // // Detonate Mana // case 27819: break; // // Controller Timer |