Fix invalid player data crash
This commit is contained in:
parent
e771155a2b
commit
1095e3ce3d
3 changed files with 5 additions and 2 deletions
|
@ -77,6 +77,9 @@ public class Profile {
|
|||
return actual;
|
||||
} catch (IOException e) {
|
||||
throw new UserProfileNotYetExistsException(UUID);
|
||||
} catch (NullPointerException e)
|
||||
{
|
||||
throw new UserProfileNotYetExistsException(UUID);
|
||||
}
|
||||
|
||||
}else {
|
||||
|
|
Reference in a new issue