mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-25 20:11:06 +01:00
Do not go home if attacking
This commit is contained in:
parent
ae5564e658
commit
06f9486e4d
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ mcl_mobs.register_mob("mobs_mc:iron_golem", {
|
|||
|
||||
if self.home_timer > 10 then
|
||||
self.home_timer = 0
|
||||
if self._home then
|
||||
if self._home and self.state ~= "attack" then
|
||||
local dist = vector.distance(self._home,self.object:get_pos())
|
||||
if dist >= tele_dist then
|
||||
self.object:set_pos(self._home)
|
||||
|
|
Loading…
Reference in a new issue