mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 12:27:59 +01:00
Fall back to name if skull has no uuid when getting player.
This commit is contained in:
parent
7f9fbe54ba
commit
7ae605218b
@ -181,7 +181,17 @@ public class CraftSkull extends CraftBlockState implements Skull {
|
||||
|
||||
@Override
|
||||
public OfflinePlayer getOwningPlayer() {
|
||||
return hasOwner() ? Bukkit.getOfflinePlayer(profile.getId()) : null;
|
||||
if (profile != null) {
|
||||
if (profile.getId() != null) {
|
||||
return Bukkit.getOfflinePlayer(profile.getId());
|
||||
}
|
||||
|
||||
if (profile.getName() != null) {
|
||||
return Bukkit.getOfflinePlayer(profile.getName());
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user