Skip to content

Commit

Permalink
Erekir turret range margin tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Apr 12, 2024
1 parent 24202dd commit 112a53c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/mindustry/content/Blocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -4049,7 +4049,7 @@ Items.tungsten, new BasicBulletType(8f, 95){{
researchCostMultiplier = 0.05f;

coolant = consume(new ConsumeLiquid(Liquids.water, 15f / 60f));
limitRange();
limitRange(12f);
}};

diffuse = new ItemTurret("diffuse"){{
Expand Down Expand Up @@ -4108,7 +4108,7 @@ Items.graphite, new BasicBulletType(8f, 41){{
rotateSpeed = 3f;

coolant = consume(new ConsumeLiquid(Liquids.water, 15f / 60f));
limitRange();
limitRange(16f);
}};

sublimate = new ContinuousLiquidTurret("sublimate"){{
Expand Down Expand Up @@ -4358,7 +4358,7 @@ Items.thorium, new ArtilleryBulletType(2.5f, 350, "shell"){{
coolant = consume(new ConsumeLiquid(Liquids.water, 20f / 60f));
coolantMultiplier = 2.5f;

limitRange(-5f);
limitRange(5f);
}};

afflict = new PowerTurret("afflict"){{
Expand Down

0 comments on commit 112a53c

Please sign in to comment.