File tree Expand file tree Collapse file tree
WowPacketParserModule.V4_4_0_54481/Parsers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -482,6 +482,25 @@ public static void HandleAuctionHouseGetCommodityQuoteResult(Packet packet)
482482 packet . ReadInt64 ( "QuoteDuration" ) ;
483483 }
484484
485+ public static void ReadAuctionFavoriteInfo ( Packet packet , params object [ ] idx )
486+ {
487+ packet . ReadUInt32 ( "Order" , idx ) ;
488+ packet . ReadUInt32 ( "ItemID" , idx ) ;
489+ packet . ReadUInt32 ( "ItemLevel" , idx ) ;
490+ packet . ReadUInt32 ( "BattlePetSpeciesID" , idx ) ;
491+ packet . ReadUInt32 ( "SuffixItemNameDescriptionID" , idx ) ;
492+ }
493+
494+ [ Parser ( Opcode . SMSG_AUCTION_FAVORITE_LIST ) ]
495+ public static void HandleAuctionFavoriteList ( Packet packet )
496+ {
497+ packet . ReadUInt32 ( "DesiredDelay" ) ;
498+ var itemsCount = packet . ReadBits ( 7 ) ;
499+
500+ for ( var i = 0 ; i < itemsCount ; ++ i )
501+ ReadAuctionFavoriteInfo ( packet , "FavoriteInfo" , i ) ;
502+ }
503+
485504 [ Parser ( Opcode . CMSG_AUCTION_LIST_PENDING_SALES ) ]
486505 public static void HandleAuctionZero ( Packet packet )
487506 {
You can’t perform that action at this time.
0 commit comments