diff --git a/core/src/mindustry/ui/dialogs/PlanetDialog.java b/core/src/mindustry/ui/dialogs/PlanetDialog.java index 05947733fe..65cc070185 100644 --- a/core/src/mindustry/ui/dialogs/PlanetDialog.java +++ b/core/src/mindustry/ui/dialogs/PlanetDialog.java @@ -94,16 +94,7 @@ public class PlanetDialog extends FloatingDialog{ //TODO names buttons.addImageTextButton("$back", Icon.left, style, this::hide).margin(bmargin); buttons.addImageTextButton("Tech", Icon.tree, style, () -> ui.tech.show()).margin(bmargin); - buttons.addImageTextButton("Launch", Icon.upOpen, style, () -> { - if(selected != null){ - if(selected.is(SectorAttribute.naval)){ - ui.showInfo("You need a naval loadout to launch here."); - return; - } - control.playSector(selected); - hide(); - } - }).margin(bmargin).disabled(b -> selected == null); + buttons.addImageTextButton("Launch", Icon.upOpen, style, this::hide).margin(bmargin); buttons.addImageTextButton("Database", Icon.book, style, () -> ui.database.show()).margin(bmargin); buttons.addImageTextButton("Resources", Icon.file, style, this::hide).margin(bmargin); @@ -367,6 +358,17 @@ public class PlanetDialog extends FloatingDialog{ stable.row(); + stable.addButton("Launch", () -> { + if(selected != null){ + if(selected.is(SectorAttribute.naval)){ + ui.showInfo("You need a naval loadout to launch here."); + return; + } + control.playSector(selected); + hide(); + } + }).size(120f, 50f).pad(2f); + stable.pack(); stable.setPosition(x, y, Align.center); diff --git a/gradle.properties b/gradle.properties index a703b57b16..8100c8da39 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ org.gradle.daemon=true org.gradle.jvmargs=-Xms256m -Xmx1024m -archash=f2ae212acde64f21ddc9804af0807098e797de08 +archash=81dbe69779811234169486401f68ff66bc573d58