Correcter versioning

This commit is contained in:
dordsor21 2019-05-05 11:58:45 +01:00 committed by GitHub
parent 0a6fad73c3
commit 46beb90112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,9 +32,9 @@ public class PlotVersion {
@Override public String toString() {
if (hash == 0 && build == 0) {
return "PlotSquared-" + year + "." + month + "." + day + "-SNAPSHOT";
return "PlotSquared-NoVer-SNAPSHOT";
} else {
return "PlotSquared-" + build;
return "PlotSquared-4." + build;
}
}