mirror of
https://codeberg.org/tenplus1/mobs_redo.git
synced 2025-01-10 01:40:21 +01:00
tweak saddle recipe, fix spawner error
This commit is contained in:
parent
903b1e34df
commit
35cc60c355
@ -157,9 +157,9 @@ minetest.register_craftitem("mobs:saddle", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mobs:saddle",
|
output = "mobs:saddle",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"mobs:leather", "mobs:leather", "mobs:leather"},
|
{"group:leather", "group:leather", "group:leather"},
|
||||||
{"mobs:leather", items.steel_ingot, "mobs:leather"},
|
{"group:leather", items.steel_ingot, "group:leather"},
|
||||||
{"mobs:leather", items.steel_ingot, "mobs:leather"}
|
{"group:leather", items.steel_ingot, "group:leather"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -10,6 +10,7 @@ local function is_player(player)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local square = math.sqrt
|
||||||
|
|
||||||
local get_distance = function(a, b)
|
local get_distance = function(a, b)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user