mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-14 10:13:13 +02:00
Local count_entities_filtered
This commit is contained in:
parent
1ed2b884cb
commit
27063e0eef
@ -33,6 +33,7 @@ local c_index
|
|||||||
local random = math.random
|
local random = math.random
|
||||||
local insert = table.insert
|
local insert = table.insert
|
||||||
local get_pollution = game.surfaces[1].get_pollution
|
local get_pollution = game.surfaces[1].get_pollution
|
||||||
|
local count_entities_filtered = game.surfaces[1].count_entities_filtered
|
||||||
|
|
||||||
local function biter_attack()
|
local function biter_attack()
|
||||||
local maxindex = #bases
|
local maxindex = #bases
|
||||||
@ -93,7 +94,7 @@ local function find_bases()
|
|||||||
end
|
end
|
||||||
if get_pollution(chunklist[i]) > 0.1 then
|
if get_pollution(chunklist[i]) > 0.1 then
|
||||||
local chunkcoord = chunklist[i]
|
local chunkcoord = chunklist[i]
|
||||||
if (game.surfaces[1].count_entities_filtered{area={{chunkcoord.x-16, chunkcoord.y-16},{chunkcoord.x+16, chunkcoord.y+16}},
|
if (count_entities_filtered{area={{chunkcoord.x-16, chunkcoord.y-16},{chunkcoord.x+16, chunkcoord.y+16}},
|
||||||
type = "unit-spawner"}) > 0 then
|
type = "unit-spawner"}) > 0 then
|
||||||
insert(bases,chunkcoord)
|
insert(bases,chunkcoord)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user