From f9b021e4c6514b02c4133d11f774dda215a54931 Mon Sep 17 00:00:00 2001 From: b3nderman Date: Sat, 14 Jan 2023 18:52:42 -0700 Subject: [PATCH] Fix animals jumping way too high upon growing up --- mods/ENTITIES/mcl_mobs/breeding.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/breeding.lua b/mods/ENTITIES/mcl_mobs/breeding.lua index 33e05f23b..b7c608c04 100644 --- a/mods/ENTITIES/mcl_mobs/breeding.lua +++ b/mods/ENTITIES/mcl_mobs/breeding.lua @@ -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