forked from Upstream/CitizensCMD
Updated for version 2.4.
This commit is contained in:
parent
ce7ff79078
commit
997642c7ec
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>me.mattstudios.plugins</groupId>
|
<groupId>me.mattstudios.plugins</groupId>
|
||||||
<artifactId>citizens-cmd</artifactId>
|
<artifactId>citizens-cmd</artifactId>
|
||||||
<version>2.3.3</version>
|
<version>2.4.0</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>CitizensCMD</name>
|
<name>CitizensCMD</name>
|
||||||
|
@ -126,6 +126,8 @@ public final class CitizensCMD extends JavaPlugin {
|
|||||||
|
|
||||||
waitingList = new HashMap<>();
|
waitingList = new HashMap<>();
|
||||||
|
|
||||||
|
setShift(getConfig().getBoolean("shift-confirm"));
|
||||||
|
|
||||||
if (getConfig().contains("cooldown-time-display")) {
|
if (getConfig().contains("cooldown-time-display")) {
|
||||||
switch (Objects.requireNonNull(getConfig().getString("cooldown-time-display")).toLowerCase()) {
|
switch (Objects.requireNonNull(getConfig().getString("cooldown-time-display")).toLowerCase()) {
|
||||||
case "short":
|
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" + lang.getUncoloredMessage(Messages.STARTUP_NEW_VERSION)));
|
||||||
info(color(TAG + "&b&o" + updater.getResourceURL()));
|
info(color(TAG + "&b&o" + updater.getResourceURL()));
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception ignored) {
|
||||||
// If it can't check for an update, tell the user and throw an error.
|
|
||||||
info("Could not check for updates!");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -280,15 +280,6 @@ public final class CitizensCMD extends JavaPlugin {
|
|||||||
return lang;
|
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
|
* Sets new update status from scheduler
|
||||||
*
|
*
|
||||||
@ -361,15 +352,6 @@ public final class CitizensCMD extends JavaPlugin {
|
|||||||
return waitingList;
|
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
|
* Sets the new shifting rule
|
||||||
*
|
*
|
||||||
@ -401,10 +383,20 @@ public final class CitizensCMD extends JavaPlugin {
|
|||||||
return api;
|
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() {
|
public boolean isShift() {
|
||||||
return shift;
|
return shift;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets if or not should alert player of new update on join
|
||||||
|
*
|
||||||
|
* @return Returns update status
|
||||||
|
*/
|
||||||
public boolean isUpdateStatus() {
|
public boolean isUpdateStatus() {
|
||||||
return updateStatus;
|
return updateStatus;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user