diff --git a/core/src/mindustry/core/Version.java b/core/src/mindustry/core/Version.java index b47973c06a..220e75536e 100644 --- a/core/src/mindustry/core/Version.java +++ b/core/src/mindustry/core/Version.java @@ -52,7 +52,7 @@ public class Version{ int dot = str.indexOf('.'); if(dot != -1){ - int major = Strings.parseInt(str.substring(0, dot)), minor = Strings.parseInt(str.substring(dot + 1)); + int major = Strings.parseInt(str.substring(0, dot), 0), minor = Strings.parseInt(str.substring(dot + 1), 0); return build >= major && revision >= minor; }else{ return build >= Strings.parseInt(str, 0); diff --git a/fastlane/metadata/android/en-US/changelogs/29795.txt b/fastlane/metadata/android/en-US/changelogs/29795.txt new file mode 100644 index 0000000000..b72b5f0a4a --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/29795.txt @@ -0,0 +1,10 @@ +[This is a truncated changelog, see Github for full notes] +- Fixed Quad AI +- Fixed crash in conveyor upgrade pathing +- Fixed other various crashes +- Made payload pickups prioritize units in blocks instead of the blocks themselves +- Increased foreshadow coolant effectiveness, but slightly decreased rotation speed +- Improved space skybox scaling +- Added building damage stats to bullets +- Added WIP mod browser for GitHub mods +- Added bridge link preview