From f7f2b97b13dfa1ef824c90293bbae72e2de9ef7e Mon Sep 17 00:00:00 2001 From: CyberMango Date: Sat, 10 Dec 2022 19:54:44 +0200 Subject: [PATCH] Fixed #2313 - baby mobs cant jump over blocks. Simply removed a line that specifies they shouldnt do that. --- mods/ENTITIES/mcl_mobs/movement.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/movement.lua b/mods/ENTITIES/mcl_mobs/movement.lua index 65023b0d4..cb0258a00 100644 --- a/mods/ENTITIES/mcl_mobs/movement.lua +++ b/mods/ENTITIES/mcl_mobs/movement.lua @@ -274,7 +274,6 @@ function mob_class:do_jump() if not self.jump or self.jump_height == 0 or self.fly - or (self.child and self.type ~= "monster") or self.order == "stand" then return false end