1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-11-10 15:05:23 +03:00

Thruster fix / Removed info on Steam to prevent confusion

This commit is contained in:
Anuken 2019-09-28 15:40:31 -04:00
parent 000b23d703
commit 92a3f150bb
2 changed files with 6 additions and 2 deletions

Binary file not shown.

View File

@ -38,7 +38,9 @@ public class JoinDialog extends FloatingDialog{
addCloseButton();
buttons.add().growX();
buttons.addButton("?", () -> ui.showInfo("$join.info")).size(60f, 64f);
if(!steam){
buttons.addButton("?", () -> ui.showInfo("$join.info")).size(60f, 64f);
}
add = new FloatingDialog("$joingame.title");
add.cont.add("$joingame.ip").padRight(5f).left();
@ -87,7 +89,9 @@ public class JoinDialog extends FloatingDialog{
refreshLocal();
refreshRemote();
Core.app.post(() -> Core.settings.getBoolOnce("joininfo", () -> ui.showInfo("$join.info")));
if(!steam){
Core.app.post(() -> Core.settings.getBoolOnce("joininfo", () -> ui.showInfo("$join.info")));
}
});
onResize(this::setup);