From e4e78789870d295714433810d2485036d4d7aa10 Mon Sep 17 00:00:00 2001 From: Emerson Rosen-Jones Date: Fri, 2 Jan 2026 23:21:00 -0500 Subject: [PATCH] fix: remove syntax errors --- oregen-manager.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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