Update src/main/java/me/clip/placeholderapi/updatechecker/UpdateChecker.java

Co-authored-by: Andre_601 <11576465+Andre601@users.noreply.github.com>
This commit is contained in:
Star 2021-06-30 05:33:06 -06:00 committed by GitHub
parent ef5cd9d376
commit ccf4f59343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -98,7 +98,9 @@ public class UpdateChecker implements Listener {
return true;
} else if ((plV[1] < spV[1])) {
return true;
} else return plV[2] < spV[2];
} else {
return plV[2] < spV[2];
}
}
private int[] toReadable(String version) {