aboutsummaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorTrazom62 <none@none>2010-01-28 19:30:15 +0100
committerTrazom62 <none@none>2010-01-28 19:30:15 +0100
commit4d0960e6306a103222caa6b219776ea96fc3f96c (patch)
treedf0cc7095961e3c3b69856fe0c81674c1f647960 /src/game
parentcb05b018542188b207ae4876e630f6fc1875145f (diff)
Fix Script Naxxramas/Kel'Thuzad. Thank PrinceCreed, Scazzato88 and Gyullo.
Fixes issue #486. Fixes issue #511. - fix kel'thuzad not casting when entering phase 2. - fix crash when casting Detonate Mana. --HG-- branch : trunk
Diffstat (limited to 'src/game')
-rw-r--r--src/game/SpellAuraEffects.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/SpellAuraEffects.cpp b/src/game/SpellAuraEffects.cpp
index 0d640a6fa78..c881074e076 100644
--- a/src/game/SpellAuraEffects.cpp
+++ b/src/game/SpellAuraEffects.cpp
@@ -1999,14 +1999,14 @@ void AuraEffect::TriggerSpell(Unit * target, Unit * caster) const
return;
// Frost Blast
case 27808:
- caster->CastCustomSpell(29879, SPELLVALUE_BASE_POINT0, (float)target->GetMaxHealth()*0.26f, target, true, NULL, this);
+ caster->CastCustomSpell(29879, SPELLVALUE_BASE_POINT0, (float)target->GetMaxHealth()*0.21f, target, true, NULL, this);
return;
// Detonate Mana
case 27819:
- if(int32 mana = (int32)(target->GetMaxPower(POWER_MANA) / 4))
+ if(int32 mana = (int32)(target->GetMaxPower(POWER_MANA) / 10))
{
mana = target->ModifyPower(POWER_MANA, -mana);
- target->CastCustomSpell(27820, SPELLVALUE_BASE_POINT0, -mana*4, NULL, true, NULL, this, caster->GetGUID());
+ target->CastCustomSpell(27820, SPELLVALUE_BASE_POINT0, -mana*10, target, true, NULL, this);
}
return;
// Inoculate Nestlewood Owlkin