diff --git a/oregen-manager.lua b/oregen-manager.lua index 3f74291..b026931 100644 --- a/oregen-manager.lua +++ b/oregen-manager.lua @@ -19,8 +19,8 @@ local KEEP_STOCKED = { } local GLOBAL_LIMS = { - lower = 4 * 64, - upper = 8 * 64, + lower = 6 * 64, + upper = 10 * 64, } local LIMIT_EXCEPTIONS = {} @@ -102,7 +102,7 @@ function cycleItems (ticker) local crush, wash, melt crush = function (item, amt) local limit = 64 - if item.count < limit then return end + if amt < limit then return end local request = { name = item, _requestCount = limit @@ -113,7 +113,7 @@ function cycleItems (ticker) end wash = function (item, amt) local limit = 64 - if item.count < limit then return end + if amt < limit then return end local request = { name = item, _requestCount = limit @@ -124,7 +124,7 @@ function cycleItems (ticker) end melt = function (item, amt) local limit = 9 - if item.count < limit then return end + if amt < limit then return end local request = { name = item, _requestCount = limit