From 73e00c518f40b35a29d5f9b73a6e21a5d03f7497 Mon Sep 17 00:00:00 2001 From: ckaotik Date: Fri, 21 May 2010 11:20:19 +0200 Subject: [PATCH] oops. forgot to autosell gray items. fixed. --- core.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core.lua b/core.lua index d3c050a..f23b88c 100644 --- a/core.lua +++ b/core.lua @@ -785,6 +785,10 @@ function BrokerGarbage:AutoSell() elseif item.classification == BrokerGarbage.VENDORLIST then sell = true + + elseif item.classification ~= BrokerGarbage.EXCLUDE and item.quality <= BG_GlobalDB.dropQuality then + sell = true + end -- Actual Selling -- 1.7.9.5