Fix animals jumping way too high upon growing up

This commit is contained in:
b3nderman 2023-01-14 18:52:42 -07:00 committed by Gitea
parent 65fb911e5f
commit f9b021e4c6
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ function mob_class:check_breeding()
-- jump when fully grown so as not to fall into ground
self.object:set_velocity({
x = 0,
y = self.jump_height*3,
y = self.jump_height,
z = 0
})
end