diff options
author | Shocker <shocker@freakz.ro> | 2012-10-21 22:25:52 +0300 |
---|---|---|
committer | Shocker <shocker@freakz.ro> | 2012-10-21 22:25:52 +0300 |
commit | 66889f11b72966fbdfc10abc460ec7345b29855a (patch) | |
tree | ca2eb34a7921d9643906121ba3d77a7519b74e52 | |
parent | 9de3528233219a7f22e3866e728f60b579366f7b (diff) |
Core/Spells: Use previous defines in a druid spell script
-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) |