Fixed power distributors connecting to generators, wrong save extension

This commit is contained in:
Anuken
2018-06-25 14:18:33 -04:00
parent 89ddbfc83d
commit f4c9645d73
7 changed files with 27 additions and 7 deletions
@@ -95,7 +95,7 @@ public class LoadDialog extends FloatingDialog{
} catch (IOException e) {
ui.showError(Bundles.format("text.save.export.fail", Strings.parseException(e, false)));
}
}, false, "mins");
}, false, saveExtension);
}else{
try {
FileHandle file = Gdx.files.local("save-" + slot.getName() + "." + Vars.saveExtension);
@@ -162,7 +162,7 @@ public class LoadDialog extends FloatingDialog{
}else{
ui.showError("$text.save.import.invalid");
}
}, true, "mins");
}, true, saveExtension);
}).fillX().margin(10f).minWidth(300f).height(70f).pad(4f).padRight(-4);
}