diff options
author | megamage <none@none> | 2009-02-13 19:54:31 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-13 19:54:31 -0600 |
commit | f2c663a363966eeb49b0a69cf3e482af891e4d1d (patch) | |
tree | c9fb95bc48d5b1d0808b87a0e0e0a230ce9392b3 /src/game | |
parent | 8ad58b4bcc24b71049f3831700ec48a5f4e01965 (diff) |
[7268] Fix show 0-level quests in gossip quest list. Author: NoFantasy
--HG--
branch : trunk
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/GossipDef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/GossipDef.cpp b/src/game/GossipDef.cpp index f8b1ac04f99..ade180dfea0 100644 --- a/src/game/GossipDef.cpp +++ b/src/game/GossipDef.cpp @@ -373,7 +373,7 @@ void PlayerMenu::SendQuestGiverQuestList( QEmote eEmote, const std::string& Titl data << uint32(questID); data << uint32(qmi.m_qIcon); - data << uint32(pQuest ? pQuest->GetQuestLevel() : 0); + data << uint32(pQuest && pQuest->GetQuestLevel() ? pQuest->GetQuestLevel() : pSession->GetPlayer()->getLevel()); data << title; } pSession->SendPacket( &data ); |