mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-04 11:33:48 +00:00
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:
@@ -658,7 +658,7 @@ void PlayerMenu::SendQuestGiverOfferReward(Quest const* quest, uint64 npcGUID, b
|
|||||||
data << uint32(0x08); // unused by client?
|
data << uint32(0x08); // unused by client?
|
||||||
data << uint32(quest->GetRewSpell()); // reward spell, this spell will display (icon) (casted if RewSpellCast == 0)
|
data << uint32(quest->GetRewSpell()); // reward spell, this spell will display (icon) (casted if RewSpellCast == 0)
|
||||||
data << int32(quest->GetRewSpellCast()); // casted spell
|
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->GetBonusTalents()); // bonus talents
|
||||||
data << uint32(quest->GetRewArenaPoints()); // arena points
|
data << uint32(quest->GetRewArenaPoints()); // arena points
|
||||||
data << uint32(0);
|
data << uint32(0);
|
||||||
|
|||||||
Reference in New Issue
Block a user