fixed setup crash
This commit is contained in:
parent
173d4b0e6a
commit
45d710f748
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ public class Stop implements ICommand {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void onStop(boolean forced) {
|
public static void onStop(boolean forced) {
|
||||||
if(status.equals("Standby")) return;
|
if(status.equals("Standby") || status.equals("Setup")) return;
|
||||||
if(forced) {
|
if(forced) {
|
||||||
Bukkit.broadcastMessage(messagePrefix + "Game has been force stopped.");
|
Bukkit.broadcastMessage(messagePrefix + "Game has been force stopped.");
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue