diff options
author | w12x <none@none> | 2008-10-22 08:43:09 -0500 |
---|---|---|
committer | w12x <none@none> | 2008-10-22 08:43:09 -0500 |
commit | 1b0baa51b59df113f3fc2200fc76ddc1f6a91ada (patch) | |
tree | 51fafff20faa3e0596e3d2c3ff3feb0f7eb4a404 /src | |
parent | 14598dd84f489a31cf451aeadd1bfea82f9a1cd7 (diff) |
[svn] Add missing SQL changes from prev. commit, also fix mistakenly commented out line. Patch provided by Visagalis.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/GossipDef.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/GossipDef.cpp b/src/game/GossipDef.cpp index 36388e159ab..c044b179938 100644 --- a/src/game/GossipDef.cpp +++ b/src/game/GossipDef.cpp @@ -467,7 +467,8 @@ void PlayerMenu::SendQuestGiverQuestDetails( Quest const *pQuest, uint64 npcGUID data << uint32(pQuest->GetRewOrReqMoney()); } - // rewarded honor points. Multiply with 10 to satisfy client data << uint32(pQuest->GetRewSpell()); // reward spell, this spell will display (icon) (casted if RewSpellCast==0) + // rewarded honor points. Multiply with 10 to satisfy client + data << uint32(pQuest->GetRewSpell()); // reward spell, this spell will display (icon) (casted if RewSpellCast==0) data << uint32(10*Trinity::Honor::hk_honor_at_level(pSession->GetPlayer()->getLevel(), pQuest->GetRewHonorableKills())); data << uint32(pQuest->GetRewSpellCast()); // casted spell data << uint32(pQuest->GetCharTitleId()); // CharTitleId, new 2.4.0, player gets this title (id from CharTitles) |