Compare commits

..

No commits in common. "6672c75d1a50784273d77f9cd78a0bcb8c1adf36" and "d9f85131005e68339ccd6f333ae6277ec00ae2b0" have entirely different histories.

View file

@ -17,7 +17,7 @@ local FLOORS = {
redstone.setOutput("top", false)
end,
storage = "create:item_vault_17",
elevator_storage = "create:portable_storage_interface_11",
elevator_storage = "bottom",
},
{
match = function (input)
@ -26,7 +26,7 @@ local FLOORS = {
end,
detect = function ()
local relay = "redstone_relay_21"
return peripheral.call(relay, "getInput", "top")
peripheral.call(relay, "getInput", "top")
end,
call = function ()
local relay = "redstone_relay_21"
@ -44,7 +44,7 @@ local FLOORS = {
end,
detect = function ()
local relay = "redstone_relay_22"
return peripheral.call(relay, "getInput", "top")
peripheral.call(relay, "getInput", "top")
end,
call = function ()
local relay = "redstone_relay_22"
@ -62,7 +62,7 @@ local FLOORS = {
end,
detect = function ()
local relay = "redstone_relay_23"
return peripheral.call(relay, "getInput", "top")
peripheral.call(relay, "getInput", "top")
end,
call = function ()
local relay = "redstone_relay_23"
@ -98,7 +98,7 @@ local PKG_QUEUE = {
end,
check_cargo = function (self, inv, floors)
for slot, item in pairs(peripheral.call(inv, "list")) do
local item_detail = peripheral.call(inv, "getItemDetail", slot)
local item_detail = peripheral.call(src, "getItemDetail", slot)
for i, floor in ipairs(floors) do
if item_detail.package ~= nil and
floor.match(item_detail.package.getAddress()) then