fix skip offline account

This commit is contained in:
ShirosakiMio 2024-01-31 08:21:25 +08:00
parent b14c76d945
commit 3f02a6d01c
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ public class OfflineAccount extends Account {
@Override
public AuthInfo playOffline() throws AuthenticationException {
return logIn();
return new AuthInfo(username, uuid, UUIDTypeAdapter.fromUUID(UUID.randomUUID()), AuthInfo.USER_TYPE_MSA, "{}");
}
@Override