mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/PacketIO: Update QueryCreatureResponse to 3.4.4
This commit is contained in:
@@ -99,9 +99,9 @@ WorldPacket const* QueryCreatureResponse::Write()
|
||||
}
|
||||
|
||||
_worldPacket.append(Stats.Flags.data(), Stats.Flags.size());
|
||||
_worldPacket << int32(Stats.CreatureType);
|
||||
_worldPacket << uint8(Stats.CreatureType);
|
||||
_worldPacket << int32(Stats.CreatureFamily);
|
||||
_worldPacket << int32(Stats.Classification);
|
||||
_worldPacket << int8(Stats.Classification);
|
||||
_worldPacket << uint32(Stats.PetSpellDataID);
|
||||
_worldPacket.append(Stats.ProxyCreatureID.data(), Stats.ProxyCreatureID.size());
|
||||
_worldPacket << uint32(Stats.Display.CreatureDisplay.size());
|
||||
|
||||
@@ -64,9 +64,9 @@ namespace WorldPackets
|
||||
std::string Title;
|
||||
std::string TitleAlt;
|
||||
std::string CursorName;
|
||||
int32 CreatureType = 0;
|
||||
uint8 CreatureType = 0;
|
||||
int32 CreatureFamily = 0;
|
||||
int32 Classification = 0;
|
||||
int8 Classification = 0;
|
||||
uint32 PetSpellDataID = 0;
|
||||
CreatureDisplayStats Display;
|
||||
float HpMulti = 0.0f;
|
||||
|
||||
Reference in New Issue
Block a user