diff options
author | Subv <s.v.h21@hotmail.com> | 2012-10-21 17:26:37 -0500 |
---|---|---|
committer | Subv <s.v.h21@hotmail.com> | 2012-10-21 17:26:37 -0500 |
commit | bcabdb08e4890f5237e09e9a077b191d1acf16e6 (patch) | |
tree | d15b6f06d3e97a2a8e10195bc8bdad77c6312073 /src/server/scripts | |
parent | 1fc3aad9d73df53173f2f186bf5cc94923c77c99 (diff) | |
parent | cff550449d90c50af96f2b765fd1230b2f629464 (diff) |
Merge branch '4.3.4' of https://github.com/TrinityCore/TrinityCore into 4.3.4
Diffstat (limited to 'src/server/scripts')
-rw-r--r-- | src/server/scripts/Spells/spell_druid.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/scripts/Spells/spell_druid.cpp b/src/server/scripts/Spells/spell_druid.cpp index 5cba8edb37e..f8adb13d058 100644 --- a/src/server/scripts/Spells/spell_druid.cpp +++ b/src/server/scripts/Spells/spell_druid.cpp @@ -158,7 +158,6 @@ enum EclipseSpells SPELL_DRUID_SOLAR_ECLIPSE_MARKER = 67483, // Will make the yellow arrow on eclipse bar point to the yellow side (solar) SPELL_DRUID_SOLAR_ECLIPSE = 48517, SPELL_DRUID_LUNAR_ECLIPSE = 48518, - TALENT_TREE_BALANCE = 752, }; // Wrath, Starfire, and Starsurge @@ -191,7 +190,7 @@ public: Player* caster = GetCaster()->ToPlayer(); // No boomy, no deal. - if (caster->GetPrimaryTalentTree(caster->GetActiveSpec()) != TALENT_TREE_BALANCE) + if (caster->GetPrimaryTalentTree(caster->GetActiveSpec()) != TALENT_TREE_DRUID_BALANCE) return; switch(GetSpellInfo()->Id) |