File tree Expand file tree Collapse file tree
WowPacketParserModule.V3_4_0_45166/Parsers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -243,9 +243,9 @@ public static void HandleCreatureQueryResponse344(Packet packet)
243243 response . TypeFlags = ( uint ? ) creature . TypeFlags ?? 0 ;
244244 creature . TypeFlags2 = response . TypeFlags2 = packet . ReadUInt32 ( "Creature Type Flags 2" ) ;
245245
246- creature . Type = packet . ReadInt32E < CreatureType > ( "CreatureType" ) ;
246+ creature . Type = packet . ReadByteE < CreatureType > ( "CreatureType" ) ;
247247 creature . Family = packet . ReadInt32E < CreatureFamily > ( "CreatureFamily" ) ;
248- creature . Rank = packet . ReadInt32E < CreatureRank > ( "Classification" ) ;
248+ creature . Rank = packet . ReadByteE < CreatureRank > ( "Classification" ) ;
249249 creature . PetSpellDataID = packet . ReadUInt32 ( "PetSpellDataId" ) ;
250250 response . Type = ( int ? ) creature . Type ?? 0 ;
251251 response . Family = ( int ? ) creature . Family ?? 0 ;
You can’t perform that action at this time.
0 commit comments