Skip to content

Commit 74c44b1

Browse files
committed
Add wotlk classic CMSG_HOTFIX_REQUEST
1 parent 753a602 commit 74c44b1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

WowPacketParserModule.V3_4_0_45166/Parsers/HotfixHandler.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9681,5 +9681,15 @@ public static void HandleDbQueryBulk(Packet packet)
96819681
for (var i = 0; i < count; ++i)
96829682
packet.ReadInt32("RecordID", i);
96839683
}
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+
}
96849694
}
96859695
}

0 commit comments

Comments
 (0)