Skip to content
Snippets Groups Projects
Commit 536c7733 authored by Anthony Zhang's avatar Anthony Zhang
Browse files

Fix sticky piston crafting recipe.

parent 5b5e9196
No related branches found
No related tags found
No related merge requests found
......@@ -690,7 +690,7 @@ mesecon:register_mvps_stopper("mesecons_pistons:piston_down_sticky_on", piston_u
--craft recipes
minetest.register_craft({
output = '"mesecons_pistons:piston_normal_off" 2',
output = 'mesecons_pistons:piston_normal_off 2',
recipe = {
{"default:wood", "default:wood", "default:wood"},
{"default:cobble", "default:steel_ingot", "default:cobble"},
......@@ -702,6 +702,6 @@ minetest.register_craft({
output = "mesecons_pistons:piston_sticky_off",
recipe = {
{"mesecons_materials:glue"},
{"mesecons_pistons:piston_normal"},
{"mesecons_pistons:piston_normal_off"},
}
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment