use proper unwrap calls

This commit is contained in:
osmarks 2018-08-13 08:54:32 +01:00
parent 56eb8d959a
commit ca4051756f

View File

@ -37,7 +37,7 @@ local commands = {
end end
local query = table.concat(query_tokens, " ") -- unsplit query local query = table.concat(query_tokens, " ") -- unsplit query
local items = unwrap(w.query_by_type("storage", { local items = w.unwrap(w.query_by_type("storage", {
type = "search", type = "search",
query = query query = query
}), "searching for items") }), "searching for items")
@ -46,7 +46,7 @@ local commands = {
repeat repeat
local max_quantity local max_quantity
if quantity < 64 then max_quantity = quantity end if quantity < 64 then max_quantity = quantity end
local moved = unwrap(w.query_by_type("storage", { local moved = w.unwrap(w.query_by_type("storage", {
type = "extract", type = "extract",
ID = item_type.ID, ID = item_type.ID,
meta = item_type.meta, meta = item_type.meta,
@ -58,8 +58,6 @@ local commands = {
item_type.count = item_type.count - moved item_type.count = item_type.count - moved
until quantity == 0 or item_type.count == 0 until quantity == 0 or item_type.count == 0
end end
if quantity == 0 then break end
end end
} }