# HG changeset patch # User Zerotorescue # Date 1295589477 -3600 # Node ID da28be6ccd310a6433073df3b483f4791521cb19 # Parent 311eb97cb983f65ebe70ea06ff8557d2410aca58 The queue module should no longer add 0s to the queue. diff -r 311eb97cb983 -r da28be6ccd31 Modules/Queue.lua --- a/Modules/Queue.lua Thu Jan 20 20:13:00 2011 +0100 +++ b/Modules/Queue.lua Fri Jan 21 06:57:57 2011 +0100 @@ -480,7 +480,7 @@ amount = (amount + bonus); end - if amount >= minCraftingQueue then + if amount > 0 and amount > minCraftingQueue then -- If we are queuing at least one AND more than the minimum amount, then proceed -- Get auction value when it is relevant