forked from Mineclonia/Mineclonia
Harden minetest.after check
This commit is contained in:
parent
915ac2da93
commit
955638bccd
|
@ -453,14 +453,14 @@ local check_for_death = function(self, cause, cmi_cause)
|
||||||
self.health = self.hp_max
|
self.health = self.hp_max
|
||||||
end
|
end
|
||||||
|
|
||||||
-- play damage sound if health was reduced and make mob flash red.
|
-- play damage sound if health was reduced and make mob flash red.
|
||||||
if damaged then
|
if damaged then
|
||||||
self.object:set_texture_mod("^[colorize:#FF000040")
|
self.object:set_texture_mod("^[colorize:#FF000040")
|
||||||
minetest.after(.2, function()
|
minetest.after(.2, function(self)
|
||||||
if self then
|
if self and self.object then
|
||||||
self.object:set_texture_mod("")
|
self.object:set_texture_mod("")
|
||||||
end
|
end
|
||||||
end)
|
end, self)
|
||||||
mob_sound(self, self.sounds.damage)
|
mob_sound(self, self.sounds.damage)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue