1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-03-17 20:58:13 +02:00

wider biter area

This commit is contained in:
MewMew 2020-03-28 21:10:59 +01:00
parent df6cb42ad6
commit eb1762973c

@ -126,10 +126,10 @@ local function on_entity_died(event)
end
local function is_out_of_map(p)
local a = p.x + 3250
local a = p.x + 1960
local b = math_abs(p.y)
if a * 0.015 >= b then return end
if a * -0.015 > b then return end
if a * 0.025 >= b then return end
if a * -0.025 > b then return end
return true
end