diff --git a/core/src/mindustry/world/blocks/campaign/LaunchPad.java b/core/src/mindustry/world/blocks/campaign/LaunchPad.java index c36b5a7a91..f16753a8bd 100644 --- a/core/src/mindustry/world/blocks/campaign/LaunchPad.java +++ b/core/src/mindustry/world/blocks/campaign/LaunchPad.java @@ -156,7 +156,7 @@ public class LaunchPad extends Block{ Sector dest = state.rules.sector == null ? null : state.rules.sector.info.getRealDestination(); return Core.bundle.format("launch.destination", - dest == null ? Core.bundle.get("sectors.nonelaunch") : + dest == null || !dest.hasBase() ? Core.bundle.get("sectors.nonelaunch") : "[accent]" + dest.name()); }).pad(4).wrap().width(200f).left(); } diff --git a/gradle.properties b/gradle.properties index ba90b53b7a..097aaec115 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,4 +10,4 @@ kapt.include.compile.classpath=false kotlin.stdlib.default.dependency=false #needed for android compilation android.useAndroidX=true -archash=47822d851954fd2707d51731042056450f07ca8c +archash=c066b6a3db27ce21fa4d07c28c0d70b86a87cd55