Skip to content
Closed
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 @@ -150,8 +150,13 @@ public static void ReadPVPBracketData(Packet packet, params object[] idx)
}

[Parser(Opcode.SMSG_PLAYER_CHOICE_CLEAR)]
public static void HandleEmpty(Packet packet)
public static void HandlePlayerChoiceClear(Packet packet)
{
if (ClientVersion.AddedInVersion(ClientVersionBuild.V9_2_5_43903))
{
packet.ReadInt32("ChoiceID");
packet.ReadBit("Clear");
}
}

[Parser(Opcode.SMSG_ENUM_CHARACTERS_RESULT)]
Expand Down