From b47ef9275bf29bda5ef1a763565a04933f67f162 Mon Sep 17 00:00:00 2001 From: ancientmarinerdev Date: Tue, 7 Mar 2023 18:50:12 +0000 Subject: [PATCH] Fix whoops --- mods/ENTITIES/mcl_mobs/api.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ENTITIES/mcl_mobs/api.lua b/mods/ENTITIES/mcl_mobs/api.lua index f3c5fb132..29ff16cf8 100644 --- a/mods/ENTITIES/mcl_mobs/api.lua +++ b/mods/ENTITIES/mcl_mobs/api.lua @@ -420,7 +420,7 @@ local function on_step_work (self, dtime) self:check_smooth_rotation(dtime) - if not player_in_active_range then + if player_in_active_range then self:set_animation_speed() -- set animation speed relative to velocity self:check_head_swivel(dtime) @@ -446,7 +446,7 @@ local function on_step_work (self, dtime) if not skip_processing then self:check_breeding() - if not player_in_active_range then + if player_in_active_range then self:check_item_pickup() self:set_armor_texture()