aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelloKitty <andrew.blakely@ymail.com>2021-10-01 09:32:36 -0500
committerGitHub <noreply@github.com>2021-10-01 16:32:36 +0200
commit82aca86d87c16d2d41c891dcd60c8e9975924dcc (patch)
tree49d80d3148d658596c842088df52207058779740
parent389979e8a3110511a99362ed1fb0cdcd4c667e60 (diff)
Core/AH: Add search delay to SMSG_AUCTION_BIDDER_LIST_RESULT and SMSG_AUCTION_OWNER_LIST_RESULT (#26915)
-rw-r--r--src/server/game/Handlers/AuctionHouseHandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Handlers/AuctionHouseHandler.cpp b/src/server/game/Handlers/AuctionHouseHandler.cpp
index 1ac1da51427..1388ddfaf97 100644
--- a/src/server/game/Handlers/AuctionHouseHandler.cpp
+++ b/src/server/game/Handlers/AuctionHouseHandler.cpp
@@ -700,7 +700,7 @@ void WorldSession::HandleAuctionListBidderItems(WorldPacket& recvData)
auctionHouse->BuildListBidderItems(data, player, count, totalcount);
data.put<uint32>(0, count); // add count to placeholder
data << totalcount;
- data << (uint32)300; //unk 2.3.0
+ data << (uint32)sWorld->getIntConfig(CONFIG_AUCTION_SEARCH_DELAY);
SendPacket(&data);
}
@@ -737,7 +737,7 @@ void WorldSession::HandleAuctionListOwnerItems(WorldPacket& recvData)
auctionHouse->BuildListOwnerItems(data, _player, count, totalcount);
data.put<uint32>(0, count);
data << (uint32) totalcount;
- data << (uint32) 0;
+ data << (uint32) sWorld->getIntConfig(CONFIG_AUCTION_SEARCH_DELAY);
SendPacket(&data);
}