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',
|
output = 'technic:copper_locked_chest 1',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'basic_materials:padlock'},
|
'basic_materials:padlock',
|
||||||
{'technic:copper_chest'},
|
'technic:copper_chest',
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -31,8 +31,8 @@ minetest.register_craft({
|
|||||||
output = 'technic:gold_locked_chest',
|
output = 'technic:gold_locked_chest',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'basic_materials:padlock'},
|
'basic_materials:padlock',
|
||||||
{'technic:gold_chest'},
|
'technic:gold_chest',
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -27,8 +27,8 @@ minetest.register_craft({
|
|||||||
output = 'technic:iron_locked_chest 1',
|
output = 'technic:iron_locked_chest 1',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'basic_materials:padlock'},
|
'basic_materials:padlock',
|
||||||
{'technic:iron_chest'},
|
'technic:iron_chest',
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@ minetest.register_craft({
|
|||||||
output = 'technic:mithril_locked_chest 1',
|
output = 'technic:mithril_locked_chest 1',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'basic_materials:padlock'},
|
'basic_materials:padlock',
|
||||||
{'technic:mithril_chest'},
|
'technic:mithril_chest',
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -22,8 +22,8 @@ minetest.register_craft({
|
|||||||
output = 'technic:silver_locked_chest',
|
output = 'technic:silver_locked_chest',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'basic_materials:padlock'},
|
'basic_materials:padlock',
|
||||||
{'technic:silver_chest'},
|
'technic:silver_chest',
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user