Skip to content

Commit

Permalink
Core/PacketIO: Adjust data types from client for SMSG_QUESTGIVER_REQU…
Browse files Browse the repository at this point in the history
…EST_ITEMS
  • Loading branch information
killerwife committed Jul 12, 2024
1 parent 4427b31 commit 0313b22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/game/Entities/GossipDef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -529,13 +529,13 @@ void PlayerMenu::SendQuestGiverRequestItems(Quest const* pQuest, ObjectGuid npcG

if (Completable)
{
data << pQuest->GetCompleteEmoteDelay();
data << pQuest->GetCompleteEmote();
data << int32(pQuest->GetCompleteEmoteDelay());
data << uint32(pQuest->GetCompleteEmote());
}
else
{
data << pQuest->GetIncompleteEmoteDelay();
data << pQuest->GetIncompleteEmote();
data << int32(pQuest->GetIncompleteEmoteDelay());
data << uint32(pQuest->GetIncompleteEmote());
}

// Close Window after cancel
Expand Down

0 comments on commit 0313b22

Please sign in to comment.