diff options
author | megamage <none@none> | 2009-03-18 20:38:42 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-18 20:38:42 -0600 |
commit | 74a8d5a1accd77fe8020b8deb90087f85d58b93f (patch) | |
tree | b1c4f04bbf7ac6f14bc125801e0b1b5095eefe92 | |
parent | 31e0cf6850fc30bff07cf574c43bcf3e2babf380 (diff) |
[7484] Cast proper triggred spell at spell 27808 tick. Author: VladimirMangos
--HG--
branch : trunk
-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 |