aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKapoeira <vertozor@gmail.com>2011-12-19 23:29:04 -0500
committerKapoeira <vertozor@gmail.com>2011-12-19 23:29:04 -0500
commita3e8ca30b7b5161d59d385750db40b422475c9a2 (patch)
tree7306f6afe1e3e142222f269c8d9f1f88f3ce3d06
parent8fb18de128f34b0d20cdd7dbee59735177029be3 (diff)
Core/Spells: Fix Druid's T10 Feral 4P Bonus.
-rwxr-xr-xsrc/server/game/Spells/Auras/SpellAuras.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuras.cpp b/src/server/game/Spells/Auras/SpellAuras.cpp
index 525084a70ed..8a778f30745 100755
--- a/src/server/game/Spells/Auras/SpellAuras.cpp
+++ b/src/server/game/Spells/Auras/SpellAuras.cpp
@@ -1566,6 +1566,16 @@ void Aura::HandleAuraSpecificMods(AuraApplication const* aurApp, Unit* caster, b
break;
}
break;
+ case SPELLFAMILY_DRUID:
+ // Enrage
+ if ((GetSpellInfo()->SpellFamilyFlags[0] & 0x80000) && GetSpellInfo()->SpellIconID == 961)
+ {
+ if (target->HasAura(70726)) // Item - Druid T10 Feral 4P Bonus
+ if (apply)
+ target->CastSpell(target, 70725, true);
+ break;
+ }
+ break;
case SPELLFAMILY_ROGUE:
// Stealth
if (GetSpellInfo()->SpellFamilyFlags[0] & 0x00400000)