diff options
author | thenecromancer <none@none> | 2010-04-21 18:55:16 +0200 |
---|---|---|
committer | thenecromancer <none@none> | 2010-04-21 18:55:16 +0200 |
commit | 4a698f5dd25525eff7a985cc58462a013488317f (patch) | |
tree | ca59dc4991628f3b11cf07abe096bd00bfcafe08 | |
parent | 4bac471798a281ef237ba1ec5834f8e8bddf30e9 (diff) |
Fix typo in one druid talent handling
--HG--
branch : trunk
-rw-r--r-- | src/game/SpellAuraEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellAuraEffects.cpp b/src/game/SpellAuraEffects.cpp index cf35274d38c..8880d3fd057 100644 --- a/src/game/SpellAuraEffects.cpp +++ b/src/game/SpellAuraEffects.cpp @@ -2504,7 +2504,7 @@ void AuraEffect::HandleShapeshiftBoosts(Unit * target, bool apply) const // Survival of the Fittest if (AuraEffect const * aurEff = target->GetAuraEffect(SPELL_AURA_MOD_TOTAL_STAT_PERCENTAGE,SPELLFAMILY_DRUID, 961, 0)) { - int32 bp = target->CalculateSpellDamage(target, GetSpellProto(),2); + int32 bp = target->CalculateSpellDamage(target, aurEff->GetSpellProto(),2); target->CastCustomSpell(target, 62069,&bp, NULL, NULL, true, 0, this); } break; |