Fix constants setup.
This commit is contained in:
parent
406c58f585
commit
ea932712c3
@ -185,9 +185,14 @@ public class AuthMe extends JavaPlugin {
|
|||||||
// TODO: enhance this
|
// TODO: enhance this
|
||||||
private void setupConstants() {
|
private void setupConstants() {
|
||||||
String versionRaw = this.getDescription().getVersion();
|
String versionRaw = this.getDescription().getVersion();
|
||||||
pluginVersion = versionRaw.substring(0, versionRaw.indexOf("-b"));
|
int index = versionRaw.lastIndexOf("-");
|
||||||
String buildRaw = versionRaw.substring(1, versionRaw.indexOf("-b"));
|
if (index != -1) {
|
||||||
pluginBuildNumber = buildRaw.substring(0, buildRaw.indexOf("-t"));
|
pluginVersion = versionRaw.substring(0, index);
|
||||||
|
pluginBuildNumber = versionRaw.substring(index + 1);
|
||||||
|
if (pluginBuildNumber.startsWith("b")) {
|
||||||
|
pluginBuildNumber = pluginBuildNumber.substring(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user