diff --git a/commands/core/binks.js b/commands/core/about.js similarity index 83% rename from commands/core/binks.js rename to commands/core/about.js index 2ad039c..a748381 100644 --- a/commands/core/binks.js +++ b/commands/core/about.js @@ -3,11 +3,11 @@ const { readFile } = require('fs/promises'); module.exports = { data: new SlashCommandBuilder() - .setName('binks') + .setName('about') .setDescription('About.'), async execute(interaction) { // const image_file = await readFile('./data/image.jpg'); // const attachment = new AttachmentBuilder(image_file, { name: 'data/image.jpg' }); - await interaction.reply({ content: "I am binks, an AI-assisted chatbot.", ephemeral: true }); + await interaction.reply({ content: "I am Binks, an AI-assisted chatbot.", ephemeral: true }); }, }; diff --git a/commands/core/list.js b/commands/core/list.js index 97512af..7f9bb1d 100644 --- a/commands/core/list.js +++ b/commands/core/list.js @@ -22,6 +22,6 @@ module.exports = { const assistants = await getAssistants(); const reply = assistants.join("\n"); - await interaction.followUp({ content: reply }); + await interaction.followUp({ content: reply, ephemeral: true }); }, };