diff options
author | Alexander <spambot42@yandex.ru> | 2011-12-16 13:44:40 +0700 |
---|---|---|
committer | Alexander <spambot42@yandex.ru> | 2011-12-16 13:44:40 +0700 |
commit | 7f114b8ab7893c8d997b1471b830ee65983328c1 (patch) | |
tree | 1390d337904452e0da786383f892de569d1d5312 /src | |
parent | af5474c959b5706e24230ce9c45f12314711501b (diff) |
Core/Spells: Fix second part of talent Nurturing Instinct
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Spells/Auras/SpellAuraEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index b690a811fbb..beb55733e71 100755 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -1518,7 +1518,7 @@ void AuraEffect::HandleShapeshiftBoosts(Unit* target, bool apply) const spellId3 = 47180; break; } - target->CastSpell(target, spellId, true, NULL, this); + target->CastSpell(target, spellId3, true, NULL, this); } // Master Shapeshifter - Cat if (AuraEffect const* aurEff = target->GetDummyAuraEffect(SPELLFAMILY_GENERIC, 2851, 0)) |