mirror of
https://github.com/TheShadowEevee/Konpeki-Discord-Bot.git
synced 2025-01-11 14:38:49 -06:00
Minor command description updates
This commit is contained in:
parent
8addf9fe02
commit
bc03b43f6f
4 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ const { clientId, botName, botOwner } = require('../config.json');
|
|||
module.exports = {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('about')
|
||||
.setDescription('Gives basic information about this bot.'),
|
||||
.setDescription('Gives basic information about the bot'),
|
||||
async execute(interaction) {
|
||||
|
||||
const exampleEmbed = new EmbedBuilder()
|
||||
|
|
|
@ -11,7 +11,7 @@ const { botName, clientId } = require('../config.json');
|
|||
module.exports = {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('invite')
|
||||
.setDescription(`Invite ${botName} to your own server!`),
|
||||
.setDescription(`Invite ${botName} to your own server`),
|
||||
async execute(interaction) {
|
||||
await interaction.reply({ content: `Use this link to invite ${botName} (That's me!) to your own server!\nhttps://discord.com/oauth2/authorize?client_id=${clientId}&permissions=274877908992&scope=bot%20applications.commands`, ephemeral: true });
|
||||
},
|
||||
|
|
|
@ -8,7 +8,7 @@ const { SlashCommandBuilder } = require('discord.js');
|
|||
module.exports = {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('rtd-ephemeral')
|
||||
.setDescription('Currently being integrated. Outputs a XKCD valid random number.'),
|
||||
.setDescription('Currently being integrated. Outputs a XKCD valid random number'),
|
||||
async execute(interaction) {
|
||||
const xkcdRandomNumber = 4;
|
||||
await interaction.reply({ content: `${interaction.client.user.tag} - Integration test of RTD command: XKCD random number is ${xkcdRandomNumber}.\nThis number is chosen by a fair dice roll and guaranteed to be random.\nSee <https://xkcd.com/221/>`, ephemeral: true });
|
||||
|
|
|
@ -8,7 +8,7 @@ const { SlashCommandBuilder } = require('discord.js');
|
|||
module.exports = {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('rtd')
|
||||
.setDescription('Currently being integrated. Outputs a XKCD valid random number.'),
|
||||
.setDescription('Currently being integrated. Outputs a XKCD valid random number'),
|
||||
async execute(interaction) {
|
||||
const xkcdRandomNumber = 4;
|
||||
await interaction.reply({ content: `${interaction.client.user.tag} - Integration test of RTD command: XKCD random number is ${xkcdRandomNumber}.\nThis number is chosen by a fair dice roll and guaranteed to be random.\nSee <https://xkcd.com/221/>`, ephemeral: false });
|
||||
|
|
Loading…
Reference in a new issue