Polish backend system (types), fix error with exporting, write

documentation for experimental hopper backend
This commit is contained in:
Soph :3 2026-01-31 14:16:01 +02:00
parent d367bf0f8d
commit 00c612c005
13 changed files with 562 additions and 554 deletions

View file

@ -50,7 +50,7 @@ local function importMechanism()
end
end
if #slotsToSend > 0 then
inv.sendItemAwayMultiple(slotsToSend, perip, import_from_inv)
inv:sendItemAwayMultiple(slotsToSend, perip, import_from_inv)
end
end
end
@ -58,7 +58,7 @@ local function importMechanism()
end
end
inv.sync()
parallel.waitForAll(inv.run(), chatbox.run, ra.run,
inv:sync()
parallel.waitForAll(inv:run(), chatbox.run, ra.run,
ui.run,
importMechanism, inv.detectPlayerInsert)
importMechanism, function() inv:detectPlayerInsert() end)