fix: remove syntax errors
This commit is contained in:
parent
7d9970d384
commit
e4e7878987
1 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue