From 46beb901126581354dc3bef4ffd568845eb25d31 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Sun, 5 May 2019 11:58:45 +0100 Subject: [PATCH] Correcter versioning --- .../intellectualsites/plotsquared/plot/PlotVersion.java | 4 ++-- 1 file changed, 2 insertions(+), 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 6925fbe94..1d65c36e0 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 @@ -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; } }