File tree Expand file tree Collapse file tree
src/server/game/Server/Packets Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -99,9 +99,9 @@ WorldPacket const* QueryCreatureResponse::Write()
9999 }
100100
101101 _worldPacket.append (Stats.Flags .data (), Stats.Flags .size ());
102- _worldPacket << int32 (Stats.CreatureType );
102+ _worldPacket << uint8 (Stats.CreatureType );
103103 _worldPacket << int32 (Stats.CreatureFamily );
104- _worldPacket << int32 (Stats.Classification );
104+ _worldPacket << int8 (Stats.Classification );
105105 _worldPacket << uint32 (Stats.PetSpellDataID );
106106 _worldPacket.append (Stats.ProxyCreatureID .data (), Stats.ProxyCreatureID .size ());
107107 _worldPacket << uint32 (Stats.Display .CreatureDisplay .size ());
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ namespace WorldPackets
6464 std::string Title;
6565 std::string TitleAlt;
6666 std::string CursorName;
67- int32 CreatureType = 0 ;
67+ uint8 CreatureType = 0 ;
6868 int32 CreatureFamily = 0 ;
69- int32 Classification = 0 ;
69+ int8 Classification = 0 ;
7070 uint32 PetSpellDataID = 0 ;
7171 CreatureDisplayStats Display;
7272 float HpMulti = 0 .0f ;
You can’t perform that action at this time.
0 commit comments