use war_cry sound in pathfinding when path found (thanks Yukitty)

This commit is contained in:
TenPlus1 2018-03-12 11:05:02 +00:00
parent 8c34c63b15
commit 2109814805
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
mobs = {} mobs = {}
mobs.mod = "redo" mobs.mod = "redo"
mobs.version = "20180126" mobs.version = "20180312"
-- Intllib -- Intllib
@ -1215,7 +1215,7 @@ local smart_mobs = function(self, s, p, dist, dtime)
mob_sound(self, self.sounds.random) mob_sound(self, self.sounds.random)
else else
-- yay i found path -- yay i found path
mob_sound(self, self.sounds.attack) mob_sound(self, self.sounds.war_cry)
set_velocity(self, self.walk_velocity) set_velocity(self, self.walk_velocity)