forked from VoxeLibre/VoxeLibre
Fix sheep not regrowing wool after eating
This commit is contained in:
parent
e53b6c124c
commit
e49eac6d85
|
@ -126,7 +126,7 @@ mcl_mobs.register_mob("mobs_mc:sheep", {
|
||||||
self:set_velocity(0)
|
self:set_velocity(0)
|
||||||
minetest.after(self.replace_delay, function()
|
minetest.after(self.replace_delay, function()
|
||||||
self.object:set_velocity(vector.zero())
|
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
|
if not self.color or not colors[self.color] then
|
||||||
self.color = "unicolor_white"
|
self.color = "unicolor_white"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue