mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-30 14:33:56 +01:00
Fix Skull BlockState setting illegal values on owner.
This commit is contained in:
parent
8292b73f30
commit
f726d07f11
@ -148,7 +148,7 @@ public class CraftSkull extends CraftBlockState implements Skull {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean setOwner(String name) {
|
public boolean setOwner(String name) {
|
||||||
if (name != null && name.length() > MAX_OWNER_LENGTH) {
|
if (name == null || name.length() > MAX_OWNER_LENGTH) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
player = name;
|
player = name;
|
||||||
@ -176,7 +176,7 @@ public class CraftSkull extends CraftBlockState implements Skull {
|
|||||||
this.skullType = skullType;
|
this.skullType = skullType;
|
||||||
|
|
||||||
if (skullType != SkullType.PLAYER) {
|
if (skullType != SkullType.PLAYER) {
|
||||||
player = null;
|
player = "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user