We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 753a602 commit 74c44b1Copy full SHA for 74c44b1
WowPacketParserModule.V3_4_0_45166/Parsers/HotfixHandler.cs
@@ -9681,5 +9681,15 @@ public static void HandleDbQueryBulk(Packet packet)
9681
for (var i = 0; i < count; ++i)
9682
packet.ReadInt32("RecordID", i);
9683
}
9684
+
9685
+ [Parser(Opcode.CMSG_HOTFIX_REQUEST)]
9686
+ public static void HandleHotfixRequest905(Packet packet)
9687
+ {
9688
+ packet.ReadUInt32("CurrentBuild");
9689
+ packet.ReadUInt32("InternalBuild");
9690
+ var hotfixCount = packet.ReadUInt32("HotfixCount");
9691
+ for (var i = 0u; i < hotfixCount; ++i)
9692
+ packet.ReadInt32("HotfixID", i);
9693
+ }
9694
9695
0 commit comments