Skip to content

Commit

Permalink
Fix 4.4.1 SMSG_GUILD_EVENT_PRESENCE_CHANGE
Browse files Browse the repository at this point in the history
  • Loading branch information
funjoker committed Nov 5, 2024
1 parent e95f3c0 commit 78b2f36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WowPacketParserModule.V4_4_0_54481/Parsers/GuildHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@ public static void HandleGuildEventPresenceChange(Packet packet)
packet.ResetBitReader();
var nameLength = packet.ReadBits(6);
packet.ReadBit("LoggedOn");
packet.ReadBit("Mobile");
if (ClientVersion.RemovedInVersion(ClientVersionBuild.V4_4_1_57294))
packet.ReadBit("Mobile");

packet.ReadWoWString("Name", nameLength);
}
Expand Down

0 comments on commit 78b2f36

Please sign in to comment.