1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-20 22:18:58 +01:00

Limit human entity name length to 16 characters, as per the spec.

This commit is contained in:
EvilSeph 2011-05-16 21:36:16 -04:00
parent bc5924bbc5
commit 38ebaa53e1

View file

@ -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) {