This commit is contained in:
Anuken
2021-06-26 11:04:03 -04:00
parent 7dc0f4dbc5
commit 4c07733857
2 changed files with 7 additions and 3 deletions

View File

@@ -88,8 +88,12 @@ public class SNet implements SteamNetworkingCallback, SteamMatchmakingCallback,
net.handleException(t);
}
}
}catch(SteamException e){
Log.err(e);
}catch(Exception e){
if(net.server()){
Log.err(e);
}else{
net.showError(e);
}
}
}
}