From 41cf8c173e4c785cadc60aade407f0300bd19f7e Mon Sep 17 00:00:00 2001 From: Machiavelli Date: Tue, 9 Mar 2010 22:37:07 +0100 Subject: Fix quest reward money showing up as experience reward in quest reward offering dialogue. Fixes issue #829 --HG-- branch : trunk --- src/game/GossipDef.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/GossipDef.cpp') diff --git a/src/game/GossipDef.cpp b/src/game/GossipDef.cpp index ae82c8b1a79..67a5e8388cb 100644 --- a/src/game/GossipDef.cpp +++ b/src/game/GossipDef.cpp @@ -758,8 +758,8 @@ void PlayerMenu::SendQuestGiverOfferReward( Quest const* pQuest, uint64 npcGUID, data << uint32(0); } - data << uint32(0); data << uint32(pQuest->GetRewOrReqMoney()); + data << uint32(pQuest->XPValue(pSession->GetPlayer())); // rewarded honor points. Multiply with 10 to satisfy client data << uint32(10*Trinity::Honor::hk_honor_at_level(pSession->GetPlayer()->getLevel(), pQuest->GetRewHonorableKills())); -- cgit v1.2.3