From 090c5b086aae31c611ca01f2e2df84630a3be53e Mon Sep 17 00:00:00 2001 From: epCode <64379263+epCode@users.noreply.github.com> Date: Sun, 9 Oct 2022 17:29:28 -0700 Subject: [PATCH] fix mobs shaking a lot --- 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 482519105..6e21c05c8 100644 --- a/mods/ENTITIES/mcl_mobs/api.lua +++ b/mods/ENTITIES/mcl_mobs/api.lua @@ -365,7 +365,7 @@ local set_yaw = function(self, yaw, delay, dtime) ddtime = dtime end - if math.abs(target_shortest_path) > 120*ddtime then + if math.abs(target_shortest_path) > 200*ddtime then if target_shortest_path > 0 then self.object:set_yaw(self.object:get_yaw()+3*ddtime) else