Fix eat replace timer for sheep

This commit is contained in:
epCode 2023-05-30 12:40:14 -07:00 committed by epCode
parent c049113f26
commit 74e55ca361
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ function mob_class:replace_node(pos)
self.state = "eat"
self:set_animation("eat")
self:set_velocity(0)
minetest.after(0.5, function()
minetest.after(1.5, function()
if self and self.object and not self.dead then
self.object:set_velocity(vector.new(0,0,0))
minetest.set_node(pos, newnode)