From 6575f5f4126a71552875a8b5725c6bcbc6949400 Mon Sep 17 00:00:00 2001 From: Eric Wald Date: Sat, 14 May 2016 23:40:01 -0600 Subject: [PATCH] Removing the quantity limit on stockflow orders. --- plugins/lua/stockflow.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/plugins/lua/stockflow.lua b/plugins/lua/stockflow.lua index 1590bf4c4..394d3f1b5 100644 --- a/plugins/lua/stockflow.lua +++ b/plugins/lua/stockflow.lua @@ -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