Fix error caused by locked chest recipes (#548)
This commit is contained in:
parent
b2a124dd83
commit
88f42539bb
@ -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',
|
||||
}
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user