From 84e790a30a77521eebe7e8498504f0137606860a Mon Sep 17 00:00:00 2001 From: NathanHandley Date: Sun, 21 Sep 2025 11:34:16 -0500 Subject: [PATCH] Fix more logs --- src/AuctionHouseBot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AuctionHouseBot.cpp b/src/AuctionHouseBot.cpp index b10b178..bb05d19 100644 --- a/src/AuctionHouseBot.cpp +++ b/src/AuctionHouseBot.cpp @@ -852,14 +852,14 @@ void AuctionHouseBot::AddNewAuctions(Player* AHBplayer, FactionSpecificAuctionHo if (currentAuctionItemListCount >= minItems) { if (debug_Out) - LOG_INFO("module", "AHSeller: Auctions above minimum, so no currentAuctionItemListCount will be listed this cycle"); + LOG_INFO("module", "AHSeller: Auctions above minimum, so no auctions will be listed this cycle"); return; } if (currentAuctionItemListCount >= maxItems) { if (debug_Out) - LOG_INFO("module", "AHSeller: Auctions at or above maximum, so no currentAuctionItemListCount will be listed this cycle"); + LOG_INFO("module", "AHSeller: Auctions at or above maximum, so no auctions will be listed this cycle"); return; }