diff options
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek')
-rw-r--r-- | src/main/java/net/tylermurphy/hideAndSeek/commands/Stop.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/commands/Stop.java b/src/main/java/net/tylermurphy/hideAndSeek/commands/Stop.java index a1758c7..b4ccca4 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/commands/Stop.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/commands/Stop.java @@ -30,7 +30,7 @@ public class Stop implements ICommand { } public static void onStop(boolean forced) { - if(status.equals("Standby")) return; + if(status.equals("Standby") || status.equals("Setup")) return; if(forced) { Bukkit.broadcastMessage(messagePrefix + "Game has been force stopped."); } else { |