Change armor stand recipe to use any item from the fence group.

This commit is contained in:
orbea 2017-11-09 20:22:56 -08:00 committed by stujones11
parent 4ff61da39a
commit da7df11ce4
1 changed files with 2 additions and 2 deletions

View File

@ -324,8 +324,8 @@ minetest.register_entity("3d_armor_stand:armor_entity", {
minetest.register_craft({
output = "3d_armor_stand:armor_stand",
recipe = {
{"", "default:fence_wood", ""},
{"", "default:fence_wood", ""},
{"", "group:fence", ""},
{"", "group:fence", ""},
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
}
})