From 112a53c95b6e7096db020587ca999c7731f59d52 Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 12 Apr 2024 19:41:09 -0400 Subject: [PATCH] Erekir turret range margin tweak --- core/src/mindustry/content/Blocks.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index e70394c328..36dfb1ee3d 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -4049,7 +4049,7 @@ public class Blocks{ researchCostMultiplier = 0.05f; coolant = consume(new ConsumeLiquid(Liquids.water, 15f / 60f)); - limitRange(); + limitRange(12f); }}; diffuse = new ItemTurret("diffuse"){{ @@ -4108,7 +4108,7 @@ public class Blocks{ rotateSpeed = 3f; coolant = consume(new ConsumeLiquid(Liquids.water, 15f / 60f)); - limitRange(); + limitRange(16f); }}; sublimate = new ContinuousLiquidTurret("sublimate"){{ @@ -4358,7 +4358,7 @@ public class Blocks{ coolant = consume(new ConsumeLiquid(Liquids.water, 20f / 60f)); coolantMultiplier = 2.5f; - limitRange(-5f); + limitRange(5f); }}; afflict = new PowerTurret("afflict"){{