Browse Source

Update contributors

pull/10/head
Abheek Dhawan 4 years ago
parent
commit
008f104f8f
  1. 10
      bot/awesomescibo.js

10
bot/awesomescibo.js

@ -393,10 +393,10 @@ function showLeaderboard(interaction) {
async function about(action, interaction) { async function about(action, interaction) {
if (action === "contributors") { if (action === "contributors") {
interaction.reply( interaction.reply(
new Discord.MessageEmbed().setTitle("Contributors: ").setDescription(` new Discord.MessageEmbed().setTitle("Contributors")
<@745063586422063214> [ADawesomeguy#2235] .addField("Creator", `<@745063586422063214> [ADawesomeguy#2235]`, true)
<@650525101048987649> [tEjAs#8127] .addField("Contributors", `<@650525101048987649> [tEjAs#8127]\n<@426864344463048705> [tetrident#9396]`, true) // Add more contributors here, first one is Abheek, second one is Tejas
`) // Add more contributors here, first one is Abheek, second one is Tejas .setTimestamp();
); );
} else if (action === "changelog") { } else if (action === "changelog") {
let parentFolder = __dirname.split("/"); let parentFolder = __dirname.split("/");
@ -424,7 +424,7 @@ async function about(action, interaction) {
.setAuthor(interaction.user.tag, interaction.user.displayAvatarURL()) .setAuthor(interaction.user.tag, interaction.user.displayAvatarURL())
.setTitle("About AwesomeSciBo") .setTitle("About AwesomeSciBo")
.addField("Servers", client.guilds.cache.size, true) .addField("Servers", client.guilds.cache.size, true)
.addField("Training Users", await userScore.countDocuments({})) .addField("Training Users", await userScore.countDocuments({}), true)
.setTimestamp(); .setTimestamp();
interaction.reply(aboutBotEmbed); interaction.reply(aboutBotEmbed);

Loading…
Cancel
Save