Core/PacketIO: Update CMSG_PET_SET_ACTION structure

This commit is contained in:
funjoker
2024-09-20 08:39:39 +02:00
parent f78ecd97e1
commit 249d1372bb
2 changed files with 8 additions and 0 deletions

View File

@@ -141,6 +141,12 @@ void WorldPackets::Pet::PetSetAction::Read()
_worldPacket >> Index;
_worldPacket >> Action;
if (_worldPacket.ReadBit())
{
_worldPacket >> Unk440_1;
_worldPacket >> Unk440_2;
}
}
void WorldPackets::Pet::PetAbandon::Read()

View File

@@ -203,6 +203,8 @@ namespace WorldPackets
uint32 Index = 0;
uint32 Action = 0;
uint32 Unk440_1 = 0;
uint32 Unk440_2 = 0;
};
class PetCancelAura final : public ClientPacket