Fix error caused by locked chest recipes (#548)

This commit is contained in:
dokutan 2020-05-03 19:53:43 +02:00 committed by GitHub
vanhempi b2a124dd83
commit 88f42539bb
No known key found for this signature in database
GPG avaimen ID: 4AEE18F83AFDEB23
5 muutettua tiedostoa jossa 10 lisäystä ja 10 poistoa

Näytä tiedosto

@ -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',
}
})

Näytä tiedosto

@ -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',
}
})

Näytä tiedosto

@ -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',
}
})

Näytä tiedosto

@ -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',
}
})

Näytä tiedosto

@ -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',
}
})