Compare commits
3 Commits
e53b6c124c
...
df8592df41
Author | SHA1 | Date |
---|---|---|
epCode | df8592df41 | |
epCode | 5e4fa30aae | |
epCode | e49eac6d85 |
|
@ -528,7 +528,6 @@ function mob_class:replace_node(pos)
|
|||
end
|
||||
end)
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -126,7 +126,7 @@ mcl_mobs.register_mob("mobs_mc:sheep", {
|
|||
self:set_velocity(0)
|
||||
minetest.after(self.replace_delay, function()
|
||||
self.object:set_velocity(vector.zero())
|
||||
if self and self.object and not self.object:get_velocity() and self.health > 0 then
|
||||
if self and self.object and self.object:get_velocity() and self.health > 0 then
|
||||
if not self.color or not colors[self.color] then
|
||||
self.color = "unicolor_white"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue