on_breed spawns child a little higher

This commit is contained in:
tenplus1 2023-06-09 08:32:59 +01:00
parent 70b562c371
commit cf18cd43de
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ local use_cmi = minetest.global_exists("cmi")
mobs = { mobs = {
mod = "redo", mod = "redo",
version = "20230607", version = "20230609",
intllib = S, intllib = S,
invis = minetest.global_exists("invisibility") and invisibility or {} invis = minetest.global_exists("invisibility") and invisibility or {}
} }
@ -1392,7 +1392,7 @@ function mob_class:breed()
local pos = self.object:get_pos() ; if not pos then return end local pos = self.object:get_pos() ; if not pos then return end
local ent = self.object:get_luaentity() local ent = self.object:get_luaentity()
pos.y = pos.y + (ent.collisionbox[2] * -1) - 0.4 pos.y = pos.y + (ent.collisionbox[2] * -1)
self.object:set_pos(pos) self.object:set_pos(pos)