diff options
| author | joschiwald <joschiwald@online.de> | 2013-07-24 15:18:42 +0200 |
|---|---|---|
| committer | joschiwald <joschiwald@online.de> | 2013-07-24 15:18:42 +0200 |
| commit | 10390465f2e964bbdaa892e3900980f50470c6c8 (patch) | |
| tree | d0e79ce083ef809efc915d3f15a4abe11a0d0ab7 /src/server/scripts | |
| parent | 00f3b01ea72069671b928f8b196a89d4b1a39d55 (diff) | |
Core/Spells: add some logs for loading spell_script_names
Diffstat (limited to 'src/server/scripts')
| -rw-r--r-- | src/server/scripts/Commands/cs_learn.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/server/scripts/Commands/cs_learn.cpp b/src/server/scripts/Commands/cs_learn.cpp index 09060e2e01b..baebc3d0bd5 100644 --- a/src/server/scripts/Commands/cs_learn.cpp +++ b/src/server/scripts/Commands/cs_learn.cpp @@ -116,8 +116,7 @@ public: else targetPlayer->learnSpell(spell, false); - uint32 firstSpell = sSpellMgr->GetFirstSpellInChain(spell); - if (GetTalentSpellCost(firstSpell)) + if (GetTalentSpellCost(spellInfo->GetFirstRankSpell()->Id)) targetPlayer->SendTalentsInfoData(false); return true; @@ -178,8 +177,7 @@ public: continue; // skip spells with first rank learned as talent (and all talents then also) - uint32 firstRank = sSpellMgr->GetFirstSpellInChain(spellInfo->Id); - if (GetTalentSpellCost(firstRank) > 0) + if (GetTalentSpellCost(spellInfo->GetFirstRankSpell()->Id) > 0) continue; // skip broken spells @@ -493,7 +491,7 @@ public: } if (allRanks) - spellId = sSpellMgr->GetFirstSpellInChain (spellId); + spellId = sSpellMgr->GetFirstSpellInChain(spellId); if (target->HasSpell(spellId)) target->removeSpell(spellId, false, !allRanks); |
