forked from VoxeLibre/VoxeLibre
Unlimit mob ai
This commit is contained in:
parent
9aafc28a20
commit
00759da39d
|
@ -3574,7 +3574,6 @@ local mob_activate = function(self, staticdata, def, dtime)
|
|||
end
|
||||
|
||||
|
||||
-- main mob function
|
||||
local mob_step = function(self, dtime)
|
||||
|
||||
if not self or not self.object or not self.object:get_luaentity() then
|
||||
|
@ -3683,14 +3682,17 @@ local mob_step = function(self, dtime)
|
|||
-- attack timer
|
||||
self.timer = self.timer + dtime
|
||||
|
||||
--[[
|
||||
if self.state ~= "attack" then
|
||||
|
||||
if self.timer < 1 then
|
||||
print("returning>>error code 1")
|
||||
return
|
||||
end
|
||||
|
||||
self.timer = 0
|
||||
end
|
||||
]]--
|
||||
|
||||
-- never go over 100
|
||||
if self.timer > 100 then
|
||||
|
@ -3729,8 +3731,6 @@ local mob_step = function(self, dtime)
|
|||
return
|
||||
end
|
||||
|
||||
|
||||
|
||||
do_jump(self)
|
||||
|
||||
runaway_from(self)
|
||||
|
|
Loading…
Reference in New Issue