fix shapeless recipes

related: https://github.com/minetest-mods/technic/issues/544
This commit is contained in:
BuckarooBanzay
2020-04-27 07:26:03 +02:00
parent f22fbfd31b
commit 0904fc3a61
5 changed files with 5 additions and 24 deletions

View File

@ -19,10 +19,7 @@ minetest.register_craft({
minetest.register_craft({
output = 'technic:copper_locked_chest 1',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:copper_chest'},
}
recipe = {'basic_materials:padlock', 'technic:copper_chest'}
})
technic.chests:register("Copper", {
@ -44,4 +41,3 @@ technic.chests:register("Copper", {
color = false,
locked = true,
})