Core/Packets: fixed SMSG_AUCTION_HELLO_RESPONSE packet structure

This commit is contained in:
Ovahlord
2024-08-04 19:51:01 +02:00
parent ec0c06201e
commit 9febef05b2
2 changed files with 2 additions and 0 deletions

View File

@@ -590,6 +590,7 @@ WorldPacket const* AuctionHelloResponse::Write()
_worldPacket << Guid;
_worldPacket << uint32(PurchasedItemDeliveryDelay);
_worldPacket << uint32(CancelledItemDeliveryDelay);
_worldPacket << uint32(DeliveryDelay);
_worldPacket.WriteBit(OpenForBusiness);
_worldPacket.FlushBits();

View File

@@ -422,6 +422,7 @@ namespace WorldPackets
ObjectGuid Guid;
uint32 PurchasedItemDeliveryDelay = 0;
uint32 CancelledItemDeliveryDelay = 0;
uint32 DeliveryDelay = 0;
bool OpenForBusiness = true;
};