Updated for version 2.4.

This commit is contained in:
Matt 2019-09-29 19:08:53 +01:00
parent ce7ff79078
commit 997642c7ec
2 changed files with 14 additions and 22 deletions

View File

@ -6,7 +6,7 @@
<groupId>me.mattstudios.plugins</groupId>
<artifactId>citizens-cmd</artifactId>
<version>2.3.3</version>
<version>2.4.0</version>
<packaging>jar</packaging>
<name>CitizensCMD</name>

View File

@ -126,6 +126,8 @@ public final class CitizensCMD extends JavaPlugin {
waitingList = new HashMap<>();
setShift(getConfig().getBoolean("shift-confirm"));
if (getConfig().contains("cooldown-time-display")) {
switch (Objects.requireNonNull(getConfig().getString("cooldown-time-display")).toLowerCase()) {
case "short":
@ -154,9 +156,7 @@ public final class CitizensCMD extends JavaPlugin {
info(color(TAG + "&b&o" + lang.getUncoloredMessage(Messages.STARTUP_NEW_VERSION)));
info(color(TAG + "&b&o" + updater.getResourceURL()));
}
} catch (Exception e) {
// If it can't check for an update, tell the user and throw an error.
info("Could not check for updates!");
} catch (Exception ignored) {
}
}
@ -280,15 +280,6 @@ public final class CitizensCMD extends JavaPlugin {
return lang;
}
/**
* Gets if or not should alert player of new update on join
*
* @return Returns update status
*/
public boolean getUpdateStatus() {
return updateStatus;
}
/**
* Sets new update status from scheduler
*
@ -361,15 +352,6 @@ public final class CitizensCMD extends JavaPlugin {
return waitingList;
}
/**
* Checks if player needs to shift or not to confirm payment
*
* @return Returns the boolean of whether or not players should shift
*/
public boolean shouldShift() {
return shift;
}
/**
* Sets the new shifting rule
*
@ -401,10 +383,20 @@ public final class CitizensCMD extends JavaPlugin {
return api;
}
/**
* Checks if player needs to shift or not to confirm payment
*
* @return Returns the boolean of whether or not players should shift
*/
public boolean isShift() {
return shift;
}
/**
* Gets if or not should alert player of new update on join
*
* @return Returns update status
*/
public boolean isUpdateStatus() {
return updateStatus;
}