private String title = getName();
private HashMap<String, String> titlesFor = new HashMap<String, String>();
@Override
public void updateEntitySkins(List<LivingEntity> entities) {
PlayerInformation info = getInformation();
PlayerInformation global = SpoutManager.getPlayerChunkMap().getGlobalInfo();
for (LivingEntity le : entities) {
for (EntitySkinType type : EntitySkinType.values()) {
String skin = null;
if (info != null) {
skin = getInformation().getEntitySkin(le, type);
}
if (skin == null) {
skin = global.getEntitySkin(le, type);
}
if (skin != null) {
sendDelayedPacket(new PacketEntitySkin(le, skin, type.getId()));
}
}