From a54cd92bbeb0f9f6258f840bf460a5980d613614 Mon Sep 17 00:00:00 2001 From: JonatanMGit Date: Tue, 18 Apr 2023 00:12:40 +0200 Subject: [PATCH] fix: typo in about command Co-authored-by: atje --- bot/src/commands/about.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/src/commands/about.ts b/bot/src/commands/about.ts index 33f1654..a09edde 100644 --- a/bot/src/commands/about.ts +++ b/bot/src/commands/about.ts @@ -7,7 +7,7 @@ module.exports = { .setDescription('Information about the bot'), async execute(interaction) { await interaction.reply({ - content: 'This bot is currently invite only.\nDon\'t miss out on all the exclusive features of this bot! Only select members have access. Get in on the action by having a member with acces invite you!', ephemeral: true + content: 'This bot is currently invite only.\nDon\'t miss out on all the exclusive features of this bot! Only select members have access. Get in on the action by having a member with access invite you!', ephemeral: true }); }, };