forked from VoxeLibre/VoxeLibre
Fix zombie siege calling gopath incorrectly
This commit is contained in:
parent
2b52eaa6ef
commit
a3cded0133
|
@ -11,7 +11,7 @@ local function spawn_zombies(self)
|
||||||
if check_spawn_pos(p) then
|
if check_spawn_pos(p) then
|
||||||
local m = mcl_mobs.spawn(p,"mobs_mc:zombie")
|
local m = mcl_mobs.spawn(p,"mobs_mc:zombie")
|
||||||
local l = m:get_luaentity()
|
local l = m:get_luaentity()
|
||||||
mcl_mobs:gopath(m:get_luaentity(),self.pos)
|
l:gopath(self.pos)
|
||||||
table.insert(self.mobs,m)
|
table.insert(self.mobs,m)
|
||||||
self.health_max = self.health_max + l.health
|
self.health_max = self.health_max + l.health
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue