Removed unused rally point block

This commit is contained in:
Anuken
2019-09-21 13:06:09 -04:00
parent 4fa173f0f5
commit 1957b6aa12
2 changed files with 2 additions and 9 deletions

View File

@@ -33,7 +33,7 @@ public class Version{
PropertiesUtils.load(map, file.reader());
type = map.get("type");
number = Integer.parseInt(map.get("number"));
number = Integer.parseInt(map.get("number", "4"));
modifier = map.get("modifier");
if(map.get("build").contains(".")){
String[] split = map.get("build").split("\\.");