Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public static void HandleMultiplePackets(Packet packet)
byte[] bytes = null;

len = packet.ReadUInt16();
opcode = packet.ReadUInt16();
opcode = packet.ReadInt32();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add if check to this for AddedInVersion, this will break parsing for BFA, SL and start of TWW

bytes = packet.ReadBytes(len);

if (bytes == null || len == 0)
Expand Down