From d1a895dcfc9fa2445313c2c0846b8ebcf0eb55c3 Mon Sep 17 00:00:00 2001 From: NathanHandley Date: Thu, 30 Nov 2023 09:39:52 -0600 Subject: [PATCH] Re-enabled other consumables --- src/AuctionHouseBot.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/AuctionHouseBot.cpp b/src/AuctionHouseBot.cpp index e207621..9f09c03 100644 --- a/src/AuctionHouseBot.cpp +++ b/src/AuctionHouseBot.cpp @@ -320,14 +320,6 @@ void AuctionHouseBot::populateItemCandidateList() continue; } - // Disable "other" consumables - if (itr->second.Class == ITEM_CLASS_CONSUMABLE && itr->second.SubClass == ITEM_SUBCLASS_CONSUMABLE_OTHER) - { - if (debug_Out_Filters) - LOG_ERROR("module", "AuctionHouseBot: Item {} disabled consumber 'other' item", itr->second.ItemId); - continue; - } - // Disable all items that have neither a sell or a buy price, with exception of item enhancements and trade goods bool isEnchantingTradeGood = (itr->second.Class == ITEM_CLASS_TRADE_GOODS && itr->second.SubClass == ITEM_SUBCLASS_ENCHANTING); bool isItemEnhancement = (itr->second.Class == ITEM_CLASS_CONSUMABLE && itr->second.SubClass == ITEM_SUBCLASS_ITEM_ENHANCEMENT);