mirror of
https://github.com/minetest-mods/technic.git
synced 2025-02-23 07:10:19 +01:00
fix shapeless recipes
related: https://github.com/minetest-mods/technic/issues/544
This commit is contained in:
parent
f22fbfd31b
commit
0904fc3a61
@ -19,10 +19,7 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'technic:copper_locked_chest 1',
|
output = 'technic:copper_locked_chest 1',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {'basic_materials:padlock', 'technic:copper_chest'}
|
||||||
{'basic_materials:padlock'},
|
|
||||||
{'technic:copper_chest'},
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
technic.chests:register("Copper", {
|
technic.chests:register("Copper", {
|
||||||
@ -44,4 +41,3 @@ technic.chests:register("Copper", {
|
|||||||
color = false,
|
color = false,
|
||||||
locked = true,
|
locked = true,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -30,10 +30,7 @@ end
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'technic:gold_locked_chest',
|
output = 'technic:gold_locked_chest',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {'basic_materials:padlock', 'technic:gold_chest'}
|
||||||
{'basic_materials:padlock'},
|
|
||||||
{'technic:gold_chest'},
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
technic.chests:register("Gold", {
|
technic.chests:register("Gold", {
|
||||||
@ -55,4 +52,3 @@ technic.chests:register("Gold", {
|
|||||||
color = true,
|
color = true,
|
||||||
locked = true,
|
locked = true,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -26,10 +26,7 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'technic:iron_locked_chest 1',
|
output = 'technic:iron_locked_chest 1',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {'basic_materials:padlock', 'technic:iron_chest'}
|
||||||
{'basic_materials:padlock'},
|
|
||||||
{'technic:iron_chest'},
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
technic.chests:register("Iron", {
|
technic.chests:register("Iron", {
|
||||||
@ -51,4 +48,3 @@ technic.chests:register("Iron", {
|
|||||||
color = false,
|
color = false,
|
||||||
locked = true,
|
locked = true,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -21,10 +21,7 @@ end
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'technic:mithril_locked_chest 1',
|
output = 'technic:mithril_locked_chest 1',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {'basic_materials:padlock', 'technic:mithril_chest'}
|
||||||
{'basic_materials:padlock'},
|
|
||||||
{'technic:mithril_chest'},
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
-- plain chest
|
-- plain chest
|
||||||
|
@ -21,10 +21,7 @@ end
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'technic:silver_locked_chest',
|
output = 'technic:silver_locked_chest',
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {
|
recipe = {'basic_materials:padlock', 'technic:silver_chest'}
|
||||||
{'basic_materials:padlock'},
|
|
||||||
{'technic:silver_chest'},
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
technic.chests:register("Silver", {
|
technic.chests:register("Silver", {
|
||||||
@ -46,4 +43,3 @@ technic.chests:register("Silver", {
|
|||||||
color = false,
|
color = false,
|
||||||
locked = true,
|
locked = true,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user