Correct versioning

This commit is contained in:
dordsor21 2019-05-05 11:56:08 +01:00
parent 5796db51a7
commit 0a6fad73c3

View File

@ -34,8 +34,7 @@ public class PlotVersion {
if (hash == 0 && build == 0) { if (hash == 0 && build == 0) {
return "PlotSquared-" + year + "." + month + "." + day + "-SNAPSHOT"; return "PlotSquared-" + year + "." + month + "." + day + "-SNAPSHOT";
} else { } else {
return "PlotSquared-" + year + "." + month + "." + day + "-" + Integer.toHexString(hash) return "PlotSquared-" + build;
+ "-" + build;
} }
} }