This commit is contained in:
Anuken
2021-08-27 09:58:08 -04:00
parent bfc9b07651
commit 8c32acbc30
2 changed files with 4 additions and 1 deletions

View File

@@ -162,7 +162,9 @@ public class ArcNetProvider implements NetProvider{
client.connect(5000, ip, port, port);
success.run();
}catch(Exception e){
net.handleException(e);
if(netClient.isConnecting()){
net.handleException(e);
}
}
});
}