mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 20:23:53 -07:00
Fall back to name if skull has no uuid when getting player.
By: md_5 <git@md-5.net>
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user