Browse Source

Add slash command for changelog

pull/10/head
Abheek Dhawan 4 years ago
parent
commit
2976f7d0a5
  1. 9
      bot/awesomescibo.js

9
bot/awesomescibo.js

@ -454,7 +454,7 @@ async function hits(message) {
message.channel.send(`Total Hits: ${totalCount}\nYour Hits: ${userCount}`); message.channel.send(`Total Hits: ${totalCount}\nYour Hits: ${userCount}`);
} }
async function changelog(message) { async function changelog(interaction) {
let parentFolder = __dirname.split("/"); let parentFolder = __dirname.split("/");
parentFolder.pop(); parentFolder.pop();
parentFolder = parentFolder.join("/"); parentFolder = parentFolder.join("/");
@ -466,7 +466,7 @@ async function changelog(message) {
}); });
const changelogEmbed = new Discord.MessageEmbed() const changelogEmbed = new Discord.MessageEmbed()
.setAuthor(message.author.tag, message.author.displayAvatarURL()) .setAuthor(interaction.user.tag, interaction.user.displayAvatarURL())
.setTitle("Changelog") .setTitle("Changelog")
.setTimestamp(); .setTimestamp();
@ -474,7 +474,7 @@ async function changelog(message) {
changelogEmbed.addField(commit.abbrevHash, `> \`Hash:\`${commit.hash}\n> \`Subject:\`${commit.subject}\n> \`Author:\`${commit.authorName}\n> \`Date:\`${commit.authorDateRel}\n> \`Link\`: [GitHub](https://github.com/ADawesomeguy/AwesomeSciBo/commit/${commit.hash})\n`); changelogEmbed.addField(commit.abbrevHash, `> \`Hash:\`${commit.hash}\n> \`Subject:\`${commit.subject}\n> \`Author:\`${commit.authorName}\n> \`Date:\`${commit.authorDateRel}\n> \`Link\`: [GitHub](https://github.com/ADawesomeguy/AwesomeSciBo/commit/${commit.hash})\n`);
}); });
message.channel.send(changelogEmbed); interaction.reply(changelogEmbed);
} }
client.on("message", async (message) => { client.on("message", async (message) => {
@ -500,9 +500,6 @@ client.on("message", async (message) => {
case "dobeabout": // Show about message of bot case "dobeabout": // Show about message of bot
aboutMessage(message); aboutMessage(message);
break; break;
case "dobechangelog":
changelog(message);
break;
} }
} }
}); });

Loading…
Cancel
Save