fix: remove syntax errors

This commit is contained in:
Emerson Rosen-Jones 2026-01-02 23:21:00 -05:00
parent 7d9970d384
commit e4e7878987

View file

@ -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