mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-12-22 21:04:14 +07:00
Version parse fix
This commit is contained in:
parent
a21cc32be9
commit
f5c270347c
@ -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);
|
||||
|
10
fastlane/metadata/android/en-US/changelogs/29795.txt
Normal file
10
fastlane/metadata/android/en-US/changelogs/29795.txt
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user