From 1f2b331bf6ed1e1804c8129c156af9061775f9e2 Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 20 Jan 2021 14:48:54 -0500 Subject: [PATCH] Possible Android mod extension fix --- core/src/mindustry/mod/Mods.java | 2 +- fastlane/metadata/android/en-US/changelogs/29801.txt | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/29801.txt diff --git a/core/src/mindustry/mod/Mods.java b/core/src/mindustry/mod/Mods.java index 02bea3e464..22910afb1e 100644 --- a/core/src/mindustry/mod/Mods.java +++ b/core/src/mindustry/mod/Mods.java @@ -72,7 +72,7 @@ public class Mods implements Loadable{ /** Imports an external mod file.*/ public void importMod(Fi file) throws IOException{ - Fi dest = modDirectory.child(file.name()); + Fi dest = modDirectory.child(file.name() + (file.extension().isEmpty() ? ".zip" : "")); if(dest.exists()){ throw new IOException("A file with the same name already exists in the mod folder!"); } diff --git a/fastlane/metadata/android/en-US/changelogs/29801.txt b/fastlane/metadata/android/en-US/changelogs/29801.txt new file mode 100644 index 0000000000..945910092b --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/29801.txt @@ -0,0 +1,9 @@ +[This is a truncated changelog, see Github for full notes] +As 6.0 is more or less stable now, updates have slowed down significantly. This is likely to be one of the last notable releases before 7.0. + +- Fixed same-line logic comments not parsing +- Fixed mass driver rotating before payload is received +- Fixed bullets dealing splash damage twice upon collision - splash damage of certain bullets has been increased to compensate + + +