Fix NPE
This commit is contained in:
parent
2b71476cfe
commit
9873415303
@ -68,7 +68,7 @@ public class BukkitUser extends User {
|
|||||||
@Override
|
@Override
|
||||||
public void refreshPermissions() {
|
public void refreshPermissions() {
|
||||||
if (attachment == null) {
|
if (attachment == null) {
|
||||||
getPlugin().getLog().severe("User " + getName() + " does not have a permissions attachment defined.");
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate the permissions that should be applied. This is done async, who cares about how long it takes or how often it's done.
|
// Calculate the permissions that should be applied. This is done async, who cares about how long it takes or how often it's done.
|
||||||
|
Loading…
Reference in New Issue
Block a user