From baf6bdf6a5930aada45ce6dfa69d48a20328b737 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 25 Oct 2020 17:21:34 -0400 Subject: [PATCH] Increased sector damage calculation radius --- core/src/mindustry/maps/SectorDamage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/maps/SectorDamage.java b/core/src/mindustry/maps/SectorDamage.java index d4329515e0..f992c03630 100644 --- a/core/src/mindustry/maps/SectorDamage.java +++ b/core/src/mindustry/maps/SectorDamage.java @@ -207,7 +207,7 @@ public class SectorDamage{ //first, calculate the total health of blocks in the path //radius around the path that gets counted - int radius = 7; + int radius = 9; IntSet counted = new IntSet(); for(Tile t : sparse2){