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
父節點 b2a124dd83
當前提交 88f42539bb
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 4AEE18F83AFDEB23
共有 5 個文件被更改,包括 10 次插入10 次删除

查看文件

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

查看文件

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

查看文件

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

查看文件

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

查看文件

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