This commit is contained in:
Anuken
2020-09-23 18:01:12 -04:00
parent 3db2ffb843
commit 5df5a6e39f
2 changed files with 2 additions and 2 deletions

View File

@@ -523,7 +523,7 @@ sectors.stored = Stored:
sectors.resume = Resume sectors.resume = Resume
sectors.launch = Launch sectors.launch = Launch
sectors.select = Select 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 #NOTE TO TRANSLATORS: don't bother editing these, they'll be removed and/or rewritten anyway
sector.groundZero.name = Ground Zero sector.groundZero.name = Ground Zero

View File

@@ -120,7 +120,7 @@ public class LaunchPad extends Block{
Sector dest = state.secinfo.getRealDestination(); Sector dest = state.secinfo.getRealDestination();
return Core.bundle.format("launch.destination", return Core.bundle.format("launch.destination",
dest == null ? Core.bundle.get("sectors.sundest") : dest == null ? Core.bundle.get("sectors.nonelaunch") :
dest.preset == null ? dest.preset == null ?
"[accent]Sector " + dest.id : "[accent]Sector " + dest.id :
"[accent]" + dest.preset.localizedName); "[accent]" + dest.preset.localizedName);