Update crafts.lua

This commit is contained in:
thunderdog1138 2019-12-18 09:58:27 -05:00 committed by GitHub
parent 6d42d8c699
commit 0e41556072
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ if minetest.get_modpath("farming") then
output = "mobs:lasso",
recipe = {
{"farming:string", "", "farming:string"},
{"", "default:diamond", ""},
{"", "default:beskar", ""},
{"farming:string", "", "farming:string"}
}
})
@ -94,8 +94,8 @@ minetest.register_tool("mobs:shears", {
minetest.register_craft({
output = "mobs:shears",
recipe = {
{"", "default:steel_ingot", ""},
{"", "group:stick", "default:steel_ingot"}
{"", "default:durasteel_ingot", ""},
{"", "group:stick", "default:durasteel_ingot"}
}
})
@ -126,8 +126,8 @@ minetest.register_craft({
output = "mobs:saddle",
recipe = {
{"mobs:leather", "mobs:leather", "mobs:leather"},
{"mobs:leather", "default:steel_ingot", "mobs:leather"},
{"mobs:leather", "default:steel_ingot", "mobs:leather"}
{"mobs:leather", "default:durasteel_ingot", "mobs:leather"},
{"mobs:leather", "default:durasteel_ingot", "mobs:leather"}
}
})