Skip to content

Commit

Permalink
Fix 3.4.3 SMSG_GOSSIP_MESSAGE
Browse files Browse the repository at this point in the history
  • Loading branch information
funjoker committed Nov 13, 2023
1 parent 638f47c commit 88d364a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions WowPacketParserModule.V3_4_0_45166/Parsers/NpcHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ public static GossipQuestOption ReadGossipQuestTextData(Packet packet, params ob

packet.ReadBit("Repeatable", idx);

if (ClientVersion.AddedInVersion(ClientVersionBuild.V3_4_3_51505)) // assumption
packet.ReadBit("Important", idx);

uint questTitleLen = packet.ReadBits(9);
gossipQuest.Title = packet.ReadWoWString("QuestTitle", questTitleLen, idx);

Expand Down

0 comments on commit 88d364a

Please sign in to comment.