forked from minetest-mods/mesecons
Fix sticky piston crafting recipe.
This commit is contained in:
parent
5b5e919683
commit
536c77330b
|
@ -690,7 +690,7 @@ mesecon:register_mvps_stopper("mesecons_pistons:piston_down_sticky_on", piston_u
|
||||||
|
|
||||||
--craft recipes
|
--craft recipes
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = '"mesecons_pistons:piston_normal_off" 2',
|
output = 'mesecons_pistons:piston_normal_off 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:wood", "default:wood", "default:wood"},
|
{"default:wood", "default:wood", "default:wood"},
|
||||||
{"default:cobble", "default:steel_ingot", "default:cobble"},
|
{"default:cobble", "default:steel_ingot", "default:cobble"},
|
||||||
|
@ -702,6 +702,6 @@ minetest.register_craft({
|
||||||
output = "mesecons_pistons:piston_sticky_off",
|
output = "mesecons_pistons:piston_sticky_off",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"mesecons_materials:glue"},
|
{"mesecons_materials:glue"},
|
||||||
{"mesecons_pistons:piston_normal"},
|
{"mesecons_pistons:piston_normal_off"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user