feat: implement auto-crafting feature for excess stock management
This commit is contained in:
@@ -80,6 +80,7 @@ local function getActivityString()
|
||||
if activity.defragging then table.insert(parts, "DEFRAG") end
|
||||
if activity.composting then table.insert(parts, "COMPOST") end
|
||||
if activity.discarding then table.insert(parts, "DISCARD") end
|
||||
if activity.autocrafting then table.insert(parts, "AUTOCRAFT") end
|
||||
if #parts > 0 then
|
||||
return table.concat(parts, " | ")
|
||||
end
|
||||
@@ -93,6 +94,7 @@ local function getBottomMessage()
|
||||
elseif activity.defragging then return "DEFRAGMENTING..."
|
||||
elseif activity.composting then return "COMPOSTING..."
|
||||
elseif activity.discarding then return "DISCARDING EXCESS..."
|
||||
elseif activity.autocrafting then return "AUTO-CRAFTING..."
|
||||
end
|
||||
return "Tap item to order"
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user