Minor command description updates

This commit is contained in:
Michael 2022-12-18 00:04:58 -06:00
parent 8addf9fe02
commit bc03b43f6f
4 changed files with 4 additions and 4 deletions

View file

@ -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()

View file

@ -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 });
},

View file

@ -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 });

View file

@ -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 });