Skip to content

Commit

Permalink
Add missing ReadBit for 4.4.1 SMSG_QUERY_QUEST_INFO_RESPONSE handler
Browse files Browse the repository at this point in the history
  • Loading branch information
funjoker committed Nov 10, 2024
1 parent 72140c4 commit 8a94648
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions WowPacketParserModule.V4_4_0_54481/Parsers/QuestHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,9 @@ public static void HandleQuestQueryResponse(Packet packet)
uint questTurnTargetNameLen = packet.ReadBits(8);
uint questCompletionLogLen = packet.ReadBits(11);

if (ClientVersion.AddedInVersion(ClientVersionBuild.V4_4_1_57294))
packet.ReadBit("ResetByScheduler");

for (uint i = 0; i < objectiveCount; ++i)
{
var objectiveId = packet.ReadEntry("Id", i);
Expand Down

0 comments on commit 8a94648

Please sign in to comment.