Skip to content

Commit

Permalink
Add 4.4.1.57916 support
Browse files Browse the repository at this point in the history
  • Loading branch information
funjoker committed Dec 5, 2024
1 parent d91e12e commit d5eb8ad
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions WowPacketParser/Enums/ClientVersionBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,7 @@ public enum ClientVersionBuild
V4_4_1_57294 = 57294, // live
V4_4_1_57359 = 57359, // live
V4_4_1_57564 = 57564, // live
V4_4_1_57916 = 57916, // 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 @@ -997,6 +997,7 @@ public static ClientVersionBuild GetOpcodeDefiningBuild(ClientVersionBuild build
case ClientVersionBuild.V4_4_1_57294:
case ClientVersionBuild.V4_4_1_57359:
case ClientVersionBuild.V4_4_1_57564:
case ClientVersionBuild.V4_4_1_57916:
return ClientVersionBuild.V4_4_1_57294;
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 @@ -1218,6 +1218,7 @@ private static string GetUpdateFieldDictionaryBuildName(ClientVersionBuild build
}
case ClientVersionBuild.V4_4_1_57359: // Blizzard changed ActivePlayer in second 4.4.1 build
case ClientVersionBuild.V4_4_1_57564:
case ClientVersionBuild.V4_4_1_57916:
{
return "V4_4_1_57359";
}
Expand Down
2 changes: 2 additions & 0 deletions WowPacketParser/Misc/ClientVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1402,6 +1402,7 @@ public static ClientVersionBuild GetVersionDefiningBuild(ClientVersionBuild buil
case ClientVersionBuild.V4_4_1_57294:
case ClientVersionBuild.V4_4_1_57359:
case ClientVersionBuild.V4_4_1_57564:
case ClientVersionBuild.V4_4_1_57916:
return ClientVersionBuild.V4_4_0_54481;
case ClientVersionBuild.BattleNetV37165:
return ClientVersionBuild.BattleNetV37165;
Expand Down Expand Up @@ -1949,6 +1950,7 @@ public static bool IsCataClientVersionBuild(ClientVersionBuild build)
case ClientVersionBuild.V4_4_1_57294:
case ClientVersionBuild.V4_4_1_57359:
case ClientVersionBuild.V4_4_1_57564:
case ClientVersionBuild.V4_4_1_57916:
return true;
default:
return false;
Expand Down

0 comments on commit d5eb8ad

Please sign in to comment.