Fix error caused by locked chest recipes (#548)

Este commit está contenido en:
dokutan 2020-05-03 19:53:43 +02:00 cometido por GitHub
padre b2a124dd83
commit 88f42539bb
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 5 ficheros con 10 adiciones y 10 borrados

Ver fichero

@ -20,8 +20,8 @@ minetest.register_craft({
output = 'technic:copper_locked_chest 1',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:copper_chest'},
'basic_materials:padlock',
'technic:copper_chest',
}
})

Ver fichero

@ -31,8 +31,8 @@ minetest.register_craft({
output = 'technic:gold_locked_chest',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:gold_chest'},
'basic_materials:padlock',
'technic:gold_chest',
}
})

Ver fichero

@ -27,8 +27,8 @@ minetest.register_craft({
output = 'technic:iron_locked_chest 1',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:iron_chest'},
'basic_materials:padlock',
'technic:iron_chest',
}
})

Ver fichero

@ -22,8 +22,8 @@ minetest.register_craft({
output = 'technic:mithril_locked_chest 1',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:mithril_chest'},
'basic_materials:padlock',
'technic:mithril_chest',
}
})

Ver fichero

@ -22,8 +22,8 @@ minetest.register_craft({
output = 'technic:silver_locked_chest',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:silver_chest'},
'basic_materials:padlock',
'technic:silver_chest',
}
})