1
0
mirror of https://github.com/mt-mods/pipeworks.git synced 2025-06-30 07:10:45 +02:00

Merge remote-tracking branch 'upstream/master'

This commit is contained in:
2025-03-20 12:41:45 +01:00
5 changed files with 23 additions and 8 deletions

View File

@ -601,11 +601,12 @@ minetest.register_node("pipeworks:autocrafter", {
if #msg < 3 then return end
local inv = meta:get_inventory()
for y = 0, 2, 1 do
local row = msg[y + 1]
for x = 1, 3, 1 do
local slot = y * 3 + x
if minetest.registered_items[msg[y + 1][x]] then
if type(row) == "table" and minetest.registered_items[row[x]] then
inv:set_stack("recipe", slot, ItemStack(
msg[y + 1][x]))
row[x]))
else
inv:set_stack("recipe", slot, ItemStack(""))
end