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

This commit is contained in:
nossr50 2011-01-11 13:20:28 -08:00
parent 51794bae44
commit 4698f4a5dd

View File

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