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; } }