Merge pull request 'Make mob walk velocity be more normal' (#2821) from epcode-patch-1 into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/2821
Reviewed-by: cora <cora@noreply.git.minetest.land>
This commit is contained in:
cora 2022-10-20 03:45:15 +00:00
commit ec4d431835
1 changed files with 1 additions and 1 deletions

View File

@ -3931,7 +3931,7 @@ local mob_step = function(self, dtime)
if not self.animation.walk_speed then
self.animation.walk_speed = 25
end
self.object:set_animation_frame_speed((v2/self.walk_velocity)*self.animation.walk_speed*self.frame_speed_multiplier)
self.object:set_animation_frame_speed((v2/math.max(1,self.run_velocity))*self.animation.walk_speed*self.frame_speed_multiplier)
end
--set_speed