Skip to content

Commit 0f5ddd2

Browse files
committed
Add 3.4.4 CMSG_DO_COUNTDOWN
1 parent 9bc9def commit 0f5ddd2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

WowPacketParserModule.V3_4_0_45166/Parsers/GroupHandler.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,15 @@ public static void HandlePartyMemberPartialState(Packet packet)
638638
}
639639
}
640640

641+
[Parser(Opcode.CMSG_DO_COUNTDOWN, ClientVersionBuild.V3_4_4_59817)]
642+
public static void HandleDoCountdown(Packet packet)
643+
{
644+
var hasPartyIndex = packet.ReadBit();
645+
packet.ReadInt32("TotalTime");
646+
if (hasPartyIndex)
647+
packet.ReadByte("PartyIndex");
648+
}
649+
641650
[Parser(Opcode.CMSG_REQUEST_RAID_INFO, ClientVersionBuild.V3_4_4_59817)]
642651
[Parser(Opcode.SMSG_GROUP_DESTROYED, ClientVersionBuild.V3_4_4_59817)]
643652
[Parser(Opcode.SMSG_GROUP_UNINVITE, ClientVersionBuild.V3_4_4_59817)]

0 commit comments

Comments
 (0)