From 2b23b7876a1f0034085f5e02329ef7cf4f4f97bc Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 9 Aug 2018 22:20:46 -0400 Subject: [PATCH] Minor bugfix --- build.gradle | 1 - .../io/anuke/mindustry/maps/generation/FortressGenerator.java | 2 +- core/src/io/anuke/mindustry/world/blocks/units/UnitPad.java | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 22d677a674..c5e851258f 100644 --- a/build.gradle +++ b/build.gradle @@ -169,7 +169,6 @@ project(":core") { build.finalizedBy(finish) def comp = System.properties["release"] == null || System.properties["release"] == "false" - if(!comp) println("Note: Compiling release build.") if(new File(projectDir.parent, '../uCore').exists() && comp){ diff --git a/core/src/io/anuke/mindustry/maps/generation/FortressGenerator.java b/core/src/io/anuke/mindustry/maps/generation/FortressGenerator.java index b34d3766a6..12f21f066f 100644 --- a/core/src/io/anuke/mindustry/maps/generation/FortressGenerator.java +++ b/core/src/io/anuke/mindustry/maps/generation/FortressGenerator.java @@ -187,7 +187,7 @@ public class FortressGenerator{ Block fixBlock(Block result){ if(result == UnitBlocks.resupplyPoint) result = DefenseBlocks.tungstenWall; - if(result == UnitBlocks.monsoonPad) result = DefenseBlocks.tungstenWallLarge; + if(result == UnitBlocks.dronePad) result = DefenseBlocks.tungstenWallLarge; if(result == UnitBlocks.fabricatorPad) result = DefenseBlocks.tungstenWallLarge; return result; } diff --git a/core/src/io/anuke/mindustry/world/blocks/units/UnitPad.java b/core/src/io/anuke/mindustry/world/blocks/units/UnitPad.java index 40c12c42e3..fe6a617435 100644 --- a/core/src/io/anuke/mindustry/world/blocks/units/UnitPad.java +++ b/core/src/io/anuke/mindustry/world/blocks/units/UnitPad.java @@ -40,7 +40,7 @@ import java.io.IOException; public class UnitPad extends Block{ protected float gracePeriodMultiplier = 23f; protected float speedupTime = 60f * 60f * 20; - protected float maxSpeedup = 7f; + protected float maxSpeedup = 2f; protected UnitType type; protected float produceTime = 1000f;