fix: uncomment debug_out for min/max items (#33)

This commit is contained in:
Patrick Lewis
2021-03-10 06:02:45 -08:00
committed by GitHub
parent 05efbc186d
commit 134b756e16

View File

@@ -153,13 +153,13 @@ void AuctionHouseBot::addNewAuctions(Player *AHBplayer, AHBConfig *config)
if (auctions >= minItems)
{
//if (debug_Out) sLog->outError( "AHSeller: Auctions above minimum");
if (debug_Out) sLog->outError( "AHSeller: Auctions above minimum");
return;
}
if (auctions >= maxItems)
{
//if (debug_Out) sLog->outError( "AHSeller: Auctions at or above maximum");
if (debug_Out) sLog->outError( "AHSeller: Auctions at or above maximum");
return;
}