Allow compatibility between steel_strut and decorative_grate

Used when using pipeworks.
master
turbogus 2018-08-25 21:37:52 -07:00 committed by Auke Kok
parent df24852dee
commit f188fb6893
1 changed files with 2 additions and 2 deletions

View File

@ -253,9 +253,9 @@ if not minetest.registered_nodes["streets:steel_support"] then
minetest.register_craft({ minetest.register_craft({
output = 'steel:strut 5', output = 'steel:strut 5',
recipe = { recipe = {
{'default:steel_ingot', '', 'default:steel_ingot'},
{'', 'default:steel_ingot', ''}, {'', 'default:steel_ingot', ''},
{'default:steel_ingot', '', 'default:steel_ingot'}, {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
{'', 'default:steel_ingot', ''},
} }
}) })
end end