Fix random mob teleportations once and for all!

This commit is contained in:
Wuzzy 2018-03-31 00:21:55 +02:00
parent 7be5914463
commit d6228145c6
1 changed files with 2 additions and 0 deletions

View File

@ -1109,11 +1109,13 @@ local smart_mobs = function(self, s, p, dist, dtime)
self.path.way = minetest.find_path(s, p1, 16, self.stepheight, dropheight, "A*_noprefetch")
-- attempt to unstick mob that is "daydreaming"
--[[ BUT NOT IN MINECLONE2, SILLY!
self.object:setpos({
x = s.x + 0.1 * (random() * 2 - 1),
y = s.y + 1,
z = s.z + 0.1 * (random() * 2 - 1)
})
]]
self.state = ""
do_attack(self, self.attack)