Removing the quantity limit on stockflow orders.

develop
Eric Wald 2016-05-14 23:40:01 -06:00
parent 3e8d4f9257
commit 6575f5f412
1 changed files with 0 additions and 6 deletions

@ -1087,12 +1087,6 @@ function order_quantity(order, quantity)
end
end
if amount > 30 then
-- Respect the quantity limit.
-- With this many in the queue, we can wait for the next cycle.
return 30
end
return amount
end