mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-24 20:03:45 +01:00
Do not go home if attacking
This commit is contained in:
parent
ae5564e658
commit
06f9486e4d
@ -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 New Issue
Block a user