Merge pull request 'Fix mobs not following player wielding the follow item' (#2768) from fix_mob_itemfollow into master

Reviewed-on: MineClone2/MineClone2#2768
This commit is contained in:
cora 2022-10-13 13:05:37 +00:00
commit 2b5c409b12
1 changed files with 3 additions and 3 deletions

View File

@ -3739,6 +3739,9 @@ local mob_step = function(self, dtime)
return
end
--Mob following code.
follow_flop(self)
-- smooth rotation by ThomasMonroe314
if self._turn_to then
set_yaw(self, self._turn_to, .1)
@ -3968,9 +3971,6 @@ local mob_step = function(self, dtime)
return
end
--Mob following code.
follow_flop(self)
if is_at_cliff_or_danger(self) then
set_velocity(self, 0)
self.state = "stand"