fix(Core/Gossip): fix titles in quest reward being able to show in gossip (#2791)

Co-Authored-By: Wyrserth <wyrserth@users.noreply.github.com>
This commit is contained in:
Kitzunu
2020-03-23 17:40:15 +01:00
committed by GitHub
parent 5b093d3a67
commit c5a7497f4d

View File

@@ -658,7 +658,7 @@ void PlayerMenu::SendQuestGiverOfferReward(Quest const* quest, uint64 npcGUID, b
data << uint32(0x08); // unused by client?
data << uint32(quest->GetRewSpell()); // reward spell, this spell will display (icon) (casted if RewSpellCast == 0)
data << int32(quest->GetRewSpellCast()); // casted spell
data << uint32(0); // unknown
data << uint32(quest->GetCharTitleId()); // CharTitleId, new 2.4.0, player gets this title (id from CharTitles)
data << uint32(quest->GetBonusTalents()); // bonus talents
data << uint32(quest->GetRewArenaPoints()); // arena points
data << uint32(0);