This commit is contained in:
Anuken 2019-05-10 16:16:21 -04:00
parent ae6c938abb
commit 962f413421
2 changed files with 2 additions and 1 deletions

View File

@ -357,7 +357,6 @@ public class NetServer implements ApplicationListener{
Log.info("&lc{0} has kicked {1}.", player.name, other.name);
}else if(action == AdminAction.trace){
TraceInfo info = new TraceInfo(other.con.address, other.uuid, other.con.modclient, other.con.mobile);
//TODO implement
if(player.con != null){
Call.onTraceInfo(player.con.id, other, info);
}else{

View File

@ -775,6 +775,8 @@ public class ServerControl implements ApplicationListener{
socketOutput = null;
}
}
}catch(BindException b){
err("Command input socket already in use. Is another instance of the server running?");
}catch(IOException e){
err("Terminating socket server.");
e.printStackTrace();