if (playerRequested == null) return;
GameProfile gp = playerRequested.getGameProfile();
if (gp == null) return;
Property property = (Property)Iterables.getFirst(gp.getProperties().get("textures"), (Object)null);
if (property == null)
{
return;
}
GalacticraftCore.packetPipeline.sendTo(new PacketSimple(EnumSimplePacket.C_SEND_PLAYERSKIN, new Object[] { strName, property.getValue(), property.getSignature(), playerRequested.getUniqueID().toString() }), playerBase);
break;
default:
break;
}
}