Show suffix in versionString() too

This commit is contained in:
dordsor21 2020-05-01 15:56:35 +01:00
parent b5de5f30ac
commit d6d49e0912

View File

@ -86,7 +86,7 @@ public class PlotVersion {
if (hash == 0 && versionString == null) { if (hash == 0 && versionString == null) {
return "NoVer-SNAPSHOT"; return "NoVer-SNAPSHOT";
} else { } else {
return versionString; return versionString + suffix;
} }
} }