aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2025-04-07 23:42:02 +0200
committerOvahlord <dreadkiller@gmx.de>2025-04-08 07:07:01 +0200
commita28b2999b1b500185aeecf343c3b1e14a39c26cf (patch)
treea88338905a0e046cc021e1ae4d88f9f350f07682
parentf8a24a076787649a258a9ee105167f51efcd775d (diff)
Core/AuctionHouse: Fix mass replace mistake in log message
(cherry picked from commit d4585cf79e3b25221dff8ab4f035fa38f7ee2e16)
-rw-r--r--src/server/game/Handlers/AuctionHouseHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Handlers/AuctionHouseHandler.cpp b/src/server/game/Handlers/AuctionHouseHandler.cpp
index fb309602ca8..d85287571e1 100644
--- a/src/server/game/Handlers/AuctionHouseHandler.cpp
+++ b/src/server/game/Handlers/AuctionHouseHandler.cpp
@@ -932,7 +932,7 @@ void WorldSession::HandleAuctionSellItem(WorldPackets::AuctionHouse::AuctionSell
auction.Items.push_back(item);
- TC_LOG_INFO("network", "CMSG_AuctionAction::SellItem: {} {} is selling item {} {} to auctioneer {} with count {} with initial bid {} with buyout {} and with time {} (in sec) in auctionhouse {}",
+ TC_LOG_INFO("network", "CMSG_AUCTION_SELL_ITEM: {} {} is selling item {} {} to auctioneer {} with count {} with initial bid {} with buyout {} and with time {} (in sec) in auctionhouse {}",
_player->GetGUID().ToString(), _player->GetName(), item->GetGUID().ToString(), item->GetTemplate()->GetDefaultLocaleName(),
creature->GetGUID().ToString(), item->GetCount(), sellItem.MinBid, sellItem.BuyoutPrice, uint32(auctionTime.count()), auctionHouse->GetAuctionHouseId());