From 34dc8553f1d3cead572d830b5317bbb1ce0b5073 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Tue, 29 Oct 2019 20:20:00 -0400 Subject: [PATCH] fix markdown issue in cwg --- 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 8569f6d..2a6ba8b 100644 --- a/src/commands/cwg.ts +++ b/src/commands/cwg.ts @@ -31,7 +31,7 @@ export default class CWG extends Command { if (!args[3]) return this.client.commands.get('help').run(message, [this.name]); try { if (!message.member.roles.includes('525441307037007902')) return; // eslint-disable-line - const edit = await message.channel.createMessage(`***${this.client.stores.emojis.loading} Binding domain...`); + const edit = await message.channel.createMessage(`***${this.client.stores.emojis.loading} Binding domain...***`); const account = await this.client.db.Account.findOne({ $or: [{ account: args[1] }, { userID: args[1] }] }); if (!account) return edit.edit(`${this.client.stores.emojis.error} Cannot locate account, please try again.`); if (args[4] && !args[5]) return edit.edit(`${this.client.stores.emojis.error} x509 Certificate key required`);