mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Fixed bug when using commands in console would falsely report the server was shutting down.
This commit is contained in:
parent
51794bae44
commit
4698f4a5dd
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user