From 0a6fad73c305f172969bb22958cd0bfde55a3071 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Sun, 5 May 2019 11:56:08 +0100 Subject: [PATCH] Correct versioning --- .../github/intellectualsites/plotsquared/plot/PlotVersion.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/PlotVersion.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/PlotVersion.java index ecb423970..6925fbe94 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/PlotVersion.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/PlotVersion.java @@ -34,8 +34,7 @@ public class PlotVersion { if (hash == 0 && build == 0) { return "PlotSquared-" + year + "." + month + "." + day + "-SNAPSHOT"; } else { - return "PlotSquared-" + year + "." + month + "." + day + "-" + Integer.toHexString(hash) - + "-" + build; + return "PlotSquared-" + build; } }