diff options
| author | Intel <chemicstry@gmail.com> | 2014-11-12 03:58:17 +0200 |
|---|---|---|
| committer | Intel <chemicstry@gmail.com> | 2014-11-12 21:43:48 +0200 |
| commit | da52c8d54ec341cc55f963fe0397fcc5e98b06e9 (patch) | |
| tree | 6b2249c92c3567ae560f9c2c989114c9d1d5e124 /src/server/scripts/Spells | |
| parent | 620f23d9dcb94b21c2b3402765817362e2b82b2f (diff) | |
Core/Talents:
Fixed SMSG_TALENTS_INFO packet
Fixed talents saving to DB
Renamed 'talent spec' to 'talent group' since this name was shadowing character specializations (and new name is correct according to JAM)
Enabled loading of MinorTalent.dbc (will be used later)
Added additional specialization check in LearnTalent
Diffstat (limited to 'src/server/scripts/Spells')
| -rw-r--r-- | src/server/scripts/Spells/spell_druid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_druid.cpp b/src/server/scripts/Spells/spell_druid.cpp index ed0709c6ad9..184e12cdccb 100644 --- a/src/server/scripts/Spells/spell_druid.cpp +++ b/src/server/scripts/Spells/spell_druid.cpp @@ -168,7 +168,7 @@ class spell_dru_eclipse_energize : public SpellScriptLoader Player* caster = GetCaster()->ToPlayer(); // No boomy, no deal. - if (caster->GetTalentSpec(caster->GetActiveSpec()) != TALENT_SPEC_DRUID_BALANCE) + if (caster->GetActiveTalentSpec() != TALENT_SPEC_DRUID_BALANCE) return; switch (GetSpellInfo()->Id) |
