diff --git a/core/assets/bundles/bundle.properties b/core/assets/bundles/bundle.properties index f0e512449d..1991b7a4a2 100644 --- a/core/assets/bundles/bundle.properties +++ b/core/assets/bundles/bundle.properties @@ -523,7 +523,7 @@ sectors.stored = Stored: sectors.resume = Resume sectors.launch = Launch sectors.select = Select -sectors.sundest = [lightgray]none (sun) +sectors.nonelaunch = [lightgray]none (sun) #NOTE TO TRANSLATORS: don't bother editing these, they'll be removed and/or rewritten anyway sector.groundZero.name = Ground Zero diff --git a/core/src/mindustry/world/blocks/campaign/LaunchPad.java b/core/src/mindustry/world/blocks/campaign/LaunchPad.java index ff798bc116..0bd500b816 100644 --- a/core/src/mindustry/world/blocks/campaign/LaunchPad.java +++ b/core/src/mindustry/world/blocks/campaign/LaunchPad.java @@ -120,7 +120,7 @@ public class LaunchPad extends Block{ Sector dest = state.secinfo.getRealDestination(); return Core.bundle.format("launch.destination", - dest == null ? Core.bundle.get("sectors.sundest") : + dest == null ? Core.bundle.get("sectors.nonelaunch") : dest.preset == null ? "[accent]Sector " + dest.id : "[accent]" + dest.preset.localizedName);