diff --git a/commands/about.js b/commands/about.js
index b6e8cf7..c6d00f4 100644
--- a/commands/about.js
+++ b/commands/about.js
@@ -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()
diff --git a/commands/invite.js b/commands/invite.js
index 95773cc..c4a7dee 100644
--- a/commands/invite.js
+++ b/commands/invite.js
@@ -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 });
},
diff --git a/commands/rtd-ephemeral.js.disabled b/commands/rtd-ephemeral.js.disabled
index eaee118..5e5e7fb 100644
--- a/commands/rtd-ephemeral.js.disabled
+++ b/commands/rtd-ephemeral.js.disabled
@@ -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 `, ephemeral: true });
diff --git a/commands/rtd.js.disabled b/commands/rtd.js.disabled
index fe8c3a6..f445451 100644
--- a/commands/rtd.js.disabled
+++ b/commands/rtd.js.disabled
@@ -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 `, ephemeral: false });