From d90b3c046ab1c8e73355c62dcd5d196e4cac7d48 Mon Sep 17 00:00:00 2001 From: cora Date: Fri, 14 Oct 2022 02:44:23 +0200 Subject: [PATCH] give mobs a slightly heigher jump height so they don't need 2 tries to jump on a node --- mods/ENTITIES/mcl_mobs/api.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/api.lua b/mods/ENTITIES/mcl_mobs/api.lua index 4e559ed07..a17e7466d 100644 --- a/mods/ENTITIES/mcl_mobs/api.lua +++ b/mods/ENTITIES/mcl_mobs/api.lua @@ -1449,7 +1449,7 @@ local do_jump = function(self) local v = self.object:get_velocity() - v.y = self.jump_height + v.y = self.jump_height + 0.1 set_animation(self, "jump") -- only when defined