Skip to content

Commit

Permalink
Use group:stick in recipes (fixes #2306)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallJoker committed Mar 24, 2019
1 parent 8b5e0a9 commit dd3f3b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mods/doors/init.lua
Expand Up @@ -781,8 +781,8 @@ function doors.register_fencegate(name, def)
minetest.register_craft({
output = name .. "_closed",
recipe = {
{"default:stick", def.material, "default:stick"},
{"default:stick", def.material, "default:stick"}
{"group:stick", def.material, "group:stick"},
{"group:stick", def.material, "group:stick"}
}
})
end
Expand Down
2 changes: 1 addition & 1 deletion mods/fireflies/init.lua
Expand Up @@ -113,7 +113,7 @@ minetest.register_craft( {
recipe = {
{"farming:string", "farming:string"},
{"farming:string", "farming:string"},
{"default:stick", ""}
{"group:stick", ""}
}
})

Expand Down
2 changes: 1 addition & 1 deletion mods/map/README.txt
Expand Up @@ -20,7 +20,7 @@ map:mapping_kit

default:glass G
default:paper P
default:stick S
group:stick S
default:steel_ingot I
group:wood W
dye:black D
Expand Down

0 comments on commit dd3f3b2

Please sign in to comment.