fix(skin): when texture file is lost, continue launching game instead of failing.

This commit is contained in:
huanghongxun 2022-01-02 01:40:37 +08:00
parent ebe880bd39
commit 836c7769f6

View File

@ -159,7 +159,7 @@ public class OfflineAccount extends Account {
try {
server.addCharacter(new YggdrasilServer.Character(uuid, username, skin.load(username).run()));
} catch (IOException e) {
throw e;
// ignore
} catch (Exception e) {
throw new IOException(e);
}