From eb1762973c294f6e61ab18e1647d8b60f84787d9 Mon Sep 17 00:00:00 2001 From: MewMew Date: Sat, 28 Mar 2020 21:10:59 +0100 Subject: [PATCH] wider biter area --- maps/railway_troopers/main.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maps/railway_troopers/main.lua b/maps/railway_troopers/main.lua index 95386bdb..358ad09c 100644 --- a/maps/railway_troopers/main.lua +++ b/maps/railway_troopers/main.lua @@ -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