Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions WowPacketParser/Enums/ClientVersionBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1025,6 +1025,12 @@ public enum ClientVersionBuild
V5_5_2_64271 = 64271, // live
V5_5_2_64481 = 64481, // live

V5_5_3_64802 = 64802, // both live and ptr
V5_5_3_64857 = 64857, // live
V5_5_3_65703 = 65703, // live
V5_5_3_65746 = 65746, // live
V5_5_3_65890 = 65890, // live
V5_5_3_65988 = 65988, // live
// Battle.net - should probably not mix this but oh well
BattleNetV37165 = 37165,

Expand Down
10 changes: 10 additions & 0 deletions WowPacketParser/Enums/Version/Opcodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
using WowPacketParser.Enums.Version.V5_5_0_61735;
using WowPacketParser.Enums.Version.V5_5_1_63311;
using WowPacketParser.Enums.Version.V5_5_2_64068;
using WowPacketParser.Enums.Version.V5_5_3_64802;
using WowPacketParser.Enums.Version.V6_0_2_19033;
using WowPacketParser.Enums.Version.V6_0_3_19103;
using WowPacketParser.Enums.Version.V6_1_0_19678;
Expand Down Expand Up @@ -1195,6 +1196,13 @@ public static ClientVersionBuild GetOpcodeDefiningBuild(ClientVersionBuild build
case ClientVersionBuild.V5_5_2_64271:
case ClientVersionBuild.V5_5_2_64481:
return ClientVersionBuild.V5_5_2_64068;
case ClientVersionBuild.V5_5_3_64802:
case ClientVersionBuild.V5_5_3_64857:
case ClientVersionBuild.V5_5_3_65703:
case ClientVersionBuild.V5_5_3_65746:
case ClientVersionBuild.V5_5_3_65890:
case ClientVersionBuild.V5_5_3_65988:
return ClientVersionBuild.V5_5_3_64802;
default:
return ClientVersionBuild.V3_3_5a_12340;
}
Expand Down Expand Up @@ -1412,6 +1420,8 @@ public static BiDictionary<Opcode, int> GetOpcodeDictionary(ClientVersionBuild b
return Opcodes_5_5_1.Opcodes(direction);
case ClientVersionBuild.V5_5_2_64068:
return Opcodes_5_5_2.Opcodes(direction);
case ClientVersionBuild.V5_5_3_64802:
return Opcodes_5_5_3.Opcodes(direction);
default:
return Opcodes_3_3_5.Opcodes(direction);
}
Expand Down
Loading