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

Co-authored-by: Andre_601 <11576465+Andre601@users.noreply.github.com>
(cherry picked from commit ccf4f59343)
This commit is contained in:
Star 2021-06-30 05:33:06 -06:00 committed by Starmism
parent 14d885392c
commit ac9b0c42b7
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) {