Skip to content

Commit

Permalink
Fix wrong guid being sent in HandleQuestPushResult.
Browse files Browse the repository at this point in the history
  • Loading branch information
brotalnia authored and MadMaxMangos committed Oct 17, 2017
1 parent 73f44c4 commit 6b82018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/WorldHandlers/QuestHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ void WorldSession::HandleQuestPushResult(WorldPacket& recvPacket)
if (Player* pPlayer = ObjectAccessor::FindPlayer(_player->GetDividerGuid()))
{
WorldPacket data(MSG_QUEST_PUSH_RESULT, (8 + 1));
data << ObjectGuid(guid);
data << _player->GetObjectGuid();
data << uint8(msg); // enum QuestShareMessages
pPlayer->GetSession()->SendPacket(&data);
_player->ClearDividerGuid();
Expand Down

0 comments on commit 6b82018

Please sign in to comment.