File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
WowPacketParserModule.V3_4_0_45166/Parsers Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -458,7 +458,7 @@ public static void HandleLfgListDeclineApplicant(Packet packet)
458
458
ReadCliRideTicket ( packet , "ApplicationRideTicket" ) ;
459
459
}
460
460
461
- [ Parser ( Opcode . CMSG_LFG_LIST_INVITE_APPLICANT , ClientVersionBuild . V3_4_4_59817 ) ) ]
461
+ [ Parser ( Opcode . CMSG_LFG_LIST_INVITE_APPLICANT , ClientVersionBuild . V3_4_4_59817 ) ]
462
462
public static void HandleLfgListInviteApplicant ( Packet packet )
463
463
{
464
464
ReadCliRideTicket ( packet , "LFGListRideTicket" ) ;
@@ -473,6 +473,15 @@ public static void HandleLfgListInviteApplicant(Packet packet)
473
473
ReadCliRideTicket ( packet , "ApplicationRideTicket" ) ;
474
474
}
475
475
476
+ [ Parser ( Opcode . CMSG_LFG_LIST_INVITE_RESPONSE ) ]
477
+ public static void HandleLFGListInviteResponse ( Packet packet )
478
+ {
479
+ ReadCliRideTicket ( packet , "RideTicket" ) ;
480
+
481
+ packet . ResetBitReader ( ) ;
482
+ packet . ReadBit ( "Accept" ) ;
483
+ }
484
+
476
485
[ Parser ( Opcode . CMSG_LFG_LIST_GET_STATUS , ClientVersionBuild . V3_4_4_59817 ) ]
477
486
[ Parser ( Opcode . CMSG_REQUEST_LFG_LIST_BLACKLIST , ClientVersionBuild . V3_4_4_59817 ) ]
478
487
[ Parser ( Opcode . CMSG_DF_GET_JOIN_STATUS , ClientVersionBuild . V3_4_4_59817 ) ]
You can’t perform that action at this time.
0 commit comments