mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-20 23:46:57 +01:00
Limit human entity name length to 16 characters, as per the spec.
This commit is contained in:
parent
bc5924bbc5
commit
38ebaa53e1
1 changed files with 5 additions and 0 deletions
|
@ -198,6 +198,11 @@ public class EntityTrackerEntry {
|
|||
entityitem.locZ = (double) packet21pickupspawn.d / 32.0D;
|
||||
return packet21pickupspawn;
|
||||
} else if (this.tracker instanceof EntityPlayer) {
|
||||
// CraftBukkit start - limit name length to 16 characters
|
||||
if (((EntityHuman) this.tracker).name.length() > 16) {
|
||||
((EntityHuman) this.tracker).name = ((EntityHuman) this.tracker).name.substring(0, 16);
|
||||
}
|
||||
// CraftBukkit end
|
||||
return new Packet20NamedEntitySpawn((EntityHuman) this.tracker);
|
||||
} else {
|
||||
if (this.tracker instanceof EntityMinecart) {
|
||||
|
|
Loading…
Reference in a new issue