Limit mob names to 64 chars to avoid client crash. Fixes BUKKIT-3753

This commit is contained in:
Travis Watkins 2013-03-16 08:31:03 -05:00
parent 4fa8c24e42
commit 7466321212

View file

@ -362,6 +362,11 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
name = "";
}
// Names cannot be more than 64 characters due to DataWatcher limitations
if (name.length() > 64) {
name = name.substring(0, 64);
}
getHandle().setCustomName(name);
}