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); client.connect(5000, ip, port, port);
success.run(); success.run();
}catch(Exception e){ }catch(Exception e){
net.handleException(e); if(netClient.isConnecting()){
net.handleException(e);
}
} }
}); });
} }

View File

@@ -83,6 +83,7 @@ public class LoadingFragment extends Fragment{
} }
public void show(String text){ public void show(String text){
button.visible = false;
nameLabel.setColor(Color.white); nameLabel.setColor(Color.white);
bar.visible = false; bar.visible = false;
table.clearActions(); table.clearActions();