Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added build 4.4.0.56713 #884

Merged
merged 1 commit into from
Oct 2, 2024
Merged
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
1 change: 1 addition & 0 deletions WowPacketParser/Enums/ClientVersionBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,7 @@ public enum ClientVersionBuild
V4_4_0_56014 = 56014, // live
V4_4_0_56420 = 56420, // live
V4_4_0_56489 = 56489, // live
V4_4_0_56713 = 56713, // live

// Battle.net - should probably not mix this but oh well
BattleNetV37165 = 37165,
Expand Down
1 change: 1 addition & 0 deletions WowPacketParser/Enums/Version/Opcodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -955,6 +955,7 @@ public static ClientVersionBuild GetOpcodeDefiningBuild(ClientVersionBuild build
case ClientVersionBuild.V4_4_0_56014:
case ClientVersionBuild.V4_4_0_56420:
case ClientVersionBuild.V4_4_0_56489:
case ClientVersionBuild.V4_4_0_56713:
return ClientVersionBuild.V4_4_0_54481;
default:
return ClientVersionBuild.V3_3_5a_12340;
Expand Down
1 change: 1 addition & 0 deletions WowPacketParser/Enums/Version/UpdateFields.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1169,6 +1169,7 @@ private static string GetUpdateFieldDictionaryBuildName(ClientVersionBuild build
case ClientVersionBuild.V4_4_0_56014:
case ClientVersionBuild.V4_4_0_56420:
case ClientVersionBuild.V4_4_0_56489:
case ClientVersionBuild.V4_4_0_56713:
{
return "V4_4_0_54481";
}
Expand Down
2 changes: 2 additions & 0 deletions WowPacketParser/Misc/ClientVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1360,6 +1360,7 @@ public static ClientVersionBuild GetVersionDefiningBuild(ClientVersionBuild buil
case ClientVersionBuild.V4_4_0_56014:
case ClientVersionBuild.V4_4_0_56420:
case ClientVersionBuild.V4_4_0_56489:
case ClientVersionBuild.V4_4_0_56713:
return ClientVersionBuild.V4_4_0_54481;
case ClientVersionBuild.BattleNetV37165:
return ClientVersionBuild.BattleNetV37165;
Expand Down Expand Up @@ -1880,6 +1881,7 @@ public static bool IsCataClientVersionBuild(ClientVersionBuild build)
case ClientVersionBuild.V4_4_0_56014:
case ClientVersionBuild.V4_4_0_56420:
case ClientVersionBuild.V4_4_0_56489:
case ClientVersionBuild.V4_4_0_56713:
return true;
default:
return false;
Expand Down
Loading