2
0
Эх сурвалжийг харах

Fixed bug when using commands in console would falsely report the server was shutting down.

nossr50 14 жил өмнө
parent
commit
4698f4a5dd

+ 2 - 1
hMod/vListener.java

@@ -20,9 +20,10 @@ public class vListener extends PluginListener {
         }
         }
         return false;
         return false;
     }
     }
-    if(split[0].equalsIgnoreCase("stop"))
+    if(split[0].equalsIgnoreCase("stop")){
         vChat.gmsg(server + " shutting down the server");
         vChat.gmsg(server + " shutting down the server");
         log.log(Level.INFO, "[Server] " + "shutting down the server");
         log.log(Level.INFO, "[Server] " + "shutting down the server");
+    }
         return false;
         return false;
     }
     }