Make saddle recipe use group:leather instead of mobs:leather

This commit is contained in:
Skivling 2024-03-08 06:26:24 +00:00
parent 903b1e34df
commit a1293aca28
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
local S = mobs.translate
local FS = function(...) return minetest.formspec_escape(S(...)) end
local mc2 = minetest.get_modpath("mcl_core")
@ -157,9 +156,9 @@ minetest.register_craftitem("mobs:saddle", {
minetest.register_craft({
output = "mobs:saddle",
recipe = {
{"mobs:leather", "mobs:leather", "mobs:leather"},
{"mobs:leather", items.steel_ingot, "mobs:leather"},
{"mobs:leather", items.steel_ingot, "mobs:leather"}
{"group:leather", "group:leather", "group:leather"},
{"group:leather", items.steel_ingot, "group:leather"},
{"group:leather", items.steel_ingot, "group:leather"}
}
})