forked from VoxeLibre/VoxeLibre
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:
commit
2b5c409b12
|
@ -3739,6 +3739,9 @@ local mob_step = function(self, dtime)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--Mob following code.
|
||||||
|
follow_flop(self)
|
||||||
|
|
||||||
-- smooth rotation by ThomasMonroe314
|
-- smooth rotation by ThomasMonroe314
|
||||||
if self._turn_to then
|
if self._turn_to then
|
||||||
set_yaw(self, self._turn_to, .1)
|
set_yaw(self, self._turn_to, .1)
|
||||||
|
@ -3968,9 +3971,6 @@ local mob_step = function(self, dtime)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
--Mob following code.
|
|
||||||
follow_flop(self)
|
|
||||||
|
|
||||||
if is_at_cliff_or_danger(self) then
|
if is_at_cliff_or_danger(self) then
|
||||||
set_velocity(self, 0)
|
set_velocity(self, 0)
|
||||||
self.state = "stand"
|
self.state = "stand"
|
||||||
|
|
Loading…
Reference in New Issue