diff --git a/commands/casual.js b/commands/casual.js index 05a3c17..b287cb2 100644 --- a/commands/casual.js +++ b/commands/casual.js @@ -85,6 +85,9 @@ module.exports = { const data = new Discord.MessageEmbed() .setColor('#ee00ff') .setAuthor(profileName, `https://ubisoft-avatars.akamaized.net/${profileId}/default_146_146.png?appId=${config.appId}`) + .setTitle (`View ${profileName} stats`) + .setDescription(`Overall casual statistics.\nUplay ID: ${profileId}`) + .setURL(`https://r6stats.com/stats/${profileId}`) .setDescription(`Overall casual statistics.\nUplay ID: ${profileId}`) .setThumbnail(rankedImgURL) .addFields( diff --git a/commands/general.js b/commands/general.js index cedcda8..f3b1f42 100644 --- a/commands/general.js +++ b/commands/general.js @@ -89,7 +89,9 @@ module.exports = { const data = new Discord.MessageEmbed() .setColor('#ff6a00') .setAuthor(profileName, `https://ubisoft-avatars.akamaized.net/${profileId}/default_146_146.png?appId=${config.appId}`) + .setTitle (`View ${profileName} stats`) .setDescription(`General statistics over entire duration of playing.\nUplay ID: ${profileId}`) + .setURL(`https://r6stats.com/stats/${profileId}`) .setThumbnail(rankedImgURL) .addFields( { name: 'Level', value: level, inline: true }, diff --git a/commands/ranked.js b/commands/ranked.js index 3d290f5..5b90112 100644 --- a/commands/ranked.js +++ b/commands/ranked.js @@ -82,6 +82,8 @@ module.exports = { const data = new Discord.MessageEmbed() .setColor('#1eff00') + .setTitle (`View ${profileName} stats`) + .setURL(`https://r6stats.com/stats/${profileId}`) .setAuthor(profileName, `https://ubisoft-avatars.akamaized.net/${profileId}/default_146_146.png?appId=${config.appId}`) .setDescription(`Overall ranked statistics.\nUplay ID: ${profileId}`) .setThumbnail(rankedImgURL) diff --git a/commands/season/casual.js b/commands/season/casual.js index 1e4556c..2982d01 100644 --- a/commands/season/casual.js +++ b/commands/season/casual.js @@ -79,6 +79,8 @@ module.exports = { // add message data const data = new Discord.MessageEmbed() .setColor('#00e1ff') + .setTitle (`View ${profileName} stats`) + .setURL(`https://r6stats.com/stats/${profileId}`) .setAuthor(profileName, `https://ubisoft-avatars.akamaized.net/${profileId}/default_146_146.png?appId=${config.appId}`) .setDescription(`Casual stats for the current season.\nUplay ID: ${profileId}`) .setThumbnail(rankedImgURL) diff --git a/commands/season/ranked.js b/commands/season/ranked.js index 5bb31b1..3ef9627 100644 --- a/commands/season/ranked.js +++ b/commands/season/ranked.js @@ -77,6 +77,8 @@ module.exports = { // add message data const data = new Discord.MessageEmbed() .setColor('#00a2ff') + .setTitle (`View ${profileName} stats`) + .setURL(`https://r6stats.com/stats/${profileId}`) .setAuthor(profileName, `https://ubisoft-avatars.akamaized.net/${profileId}/default_146_146.png?appId=${config.appId}`) .setDescription(`Ranked stats for the current season.\nUplay ID: ${profileId}`) .setThumbnail(rankedImgURL)