Fix invalid player data crash

This commit is contained in:
Aria 2023-02-27 21:30:08 -07:00
parent e771155a2b
commit 1095e3ce3d
3 changed files with 5 additions and 2 deletions

View file

@ -77,6 +77,9 @@ public class Profile {
return actual;
} catch (IOException e) {
throw new UserProfileNotYetExistsException(UUID);
} catch (NullPointerException e)
{
throw new UserProfileNotYetExistsException(UUID);
}
}else {