mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-03 22:21:37 +01:00
SPIGOT-4016: Fix clearing custom names
This commit is contained in:
parent
84676f363c
commit
b6a757dec8
@ -527,12 +527,8 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
||||
|
||||
@Override
|
||||
public void setCustomName(String name) {
|
||||
if (name == null) {
|
||||
name = "";
|
||||
}
|
||||
|
||||
// sane limit for name length
|
||||
if (name.length() > 256) {
|
||||
if (name != null && name.length() > 256) {
|
||||
name = name.substring(0, 256);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user