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 = { local GLOBAL_LIMS = {
lower = 4 * 64, lower = 6 * 64,
upper = 8 * 64, upper = 10 * 64,
} }
local LIMIT_EXCEPTIONS = {} local LIMIT_EXCEPTIONS = {}
@ -102,7 +102,7 @@ function cycleItems (ticker)
local crush, wash, melt local crush, wash, melt
crush = function (item, amt) crush = function (item, amt)
local limit = 64 local limit = 64
if item.count < limit then return end if amt < limit then return end
local request = { local request = {
name = item, name = item,
_requestCount = limit _requestCount = limit
@ -113,7 +113,7 @@ function cycleItems (ticker)
end end
wash = function (item, amt) wash = function (item, amt)
local limit = 64 local limit = 64
if item.count < limit then return end if amt < limit then return end
local request = { local request = {
name = item, name = item,
_requestCount = limit _requestCount = limit
@ -124,7 +124,7 @@ function cycleItems (ticker)
end end
melt = function (item, amt) melt = function (item, amt)
local limit = 9 local limit = 9
if item.count < limit then return end if amt < limit then return end
local request = { local request = {
name = item, name = item,
_requestCount = limit _requestCount = limit