From ff298b690ae516e1ce0a855988bb952e7899341d Mon Sep 17 00:00:00 2001 From: Bsian Date: Wed, 30 Oct 2019 12:32:40 +0000 Subject: [PATCH] Markdown fix --- src/commands/cwg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/cwg.ts b/src/commands/cwg.ts index 3455ba9..e060788 100644 --- a/src/commands/cwg.ts +++ b/src/commands/cwg.ts @@ -109,7 +109,7 @@ export default class CWG extends Command { if (!args[1]) return this.client.commands.get('help').run(message, [this.name]); const domain = await this.client.db.Domain.findOne({ $or: [{ domain: args[1] }, { port: Number(args[1]) || '' }] }); if (!domain) return message.channel.createMessage(`***${this.client.stores.emojis.error} The domain or port you provided could not be found.***`); - const edit = await message.channel.createMessage(`***${this.client.stores.emojis.loading} Deleting domain...`); + const edit = await message.channel.createMessage(`***${this.client.stores.emojis.loading} Deleting domain...***`); const embed = new RichEmbed(); embed.setTitle('Domain Deletion'); embed.addField('Account Username', domain.account.username, true);