Replaced '$' formatting with '@'
This commit is contained in:
@@ -11,7 +11,7 @@ import static mindustry.Vars.*;
|
||||
public class SaveDialog extends LoadDialog{
|
||||
|
||||
public SaveDialog(){
|
||||
super("$savegame");
|
||||
super("@savegame");
|
||||
|
||||
update(() -> {
|
||||
if(state.isMenu() && isShown()){
|
||||
@@ -23,9 +23,9 @@ public class SaveDialog extends LoadDialog{
|
||||
@Override
|
||||
public void addSetup(){
|
||||
|
||||
buttons.button("$save.new", Icon.add, () ->
|
||||
ui.showTextInput("$save", "$save.newslot", 30, "",
|
||||
text -> ui.loadAnd("$saving", () -> {
|
||||
buttons.button("@save.new", Icon.add, () ->
|
||||
ui.showTextInput("@save", "@save.newslot", 30, "",
|
||||
text -> ui.loadAnd("@saving", () -> {
|
||||
control.saves.addSave(text);
|
||||
Core.app.post(() -> Core.app.post(this::setup));
|
||||
}))).fillX().margin(10f);
|
||||
@@ -36,13 +36,13 @@ public class SaveDialog extends LoadDialog{
|
||||
button.clicked(() -> {
|
||||
if(button.childrenPressed()) return;
|
||||
|
||||
ui.showConfirm("$overwrite", "$save.overwrite", () -> save(slot));
|
||||
ui.showConfirm("@overwrite", "@save.overwrite", () -> save(slot));
|
||||
});
|
||||
}
|
||||
|
||||
void save(SaveSlot slot){
|
||||
|
||||
ui.loadfrag.show("$saving");
|
||||
ui.loadfrag.show("@saving");
|
||||
|
||||
Time.runTask(5f, () -> {
|
||||
hide();
|
||||
|
||||
Reference in New Issue
Block a user