From eb2f9ac89b52227518a584499cf77a0b61de7934 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Tue, 6 Oct 2020 23:10:25 -0400 Subject: [PATCH] fix --- src/commands/applyt2.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/commands/applyt2.ts b/src/commands/applyt2.ts index 5c2e9ea..bf19a4d 100644 --- a/src/commands/applyt2.ts +++ b/src/commands/applyt2.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-useless-escape */ import { Message } from 'eris'; import { Client, Command, Report, RichEmbed } from '../class'; @@ -23,7 +24,7 @@ export default class ApplyT2 extends Command { const decision = await Report.tier2(account.userID, this.client.config.internalKey); if (decision.status !== 'SUCCESS') { await loading.delete(); - this.success(message.channel, `__**Decision**__\n\n**Status:** ${decision.decision}\n**Processed by:** EDS (A*01)`); + this.success(message.channel, `__**Decision**__\n\n**Status:** ${decision.decision}\n**Processed by:** EDS (A\*01)`); if (decision.decision === 'APPROVED') { const tier = await this.client.db.Tier.findOne({ id: 2 }); @@ -46,7 +47,7 @@ export default class ApplyT2 extends Command { return null; } await loading.delete(); - return this.success(message.channel, `__**Decision**__\n\n**Status:** ${decision.decision}\n**Processed by:** EDS (A*01)\n\n\n*Pre-Declines will not result in a hard pull, and they may be due to a server issue or insufficient information. You may want to contact a Staff member for further information.*`); + return this.success(message.channel, `__**Decision**__\n\n**Status:** ${decision.decision}\n**Processed by:** EDS (A\*01)\n\n\n*Pre-Declines will not result in a hard pull, and they may be due to a server issue or insufficient information. You may want to contact a Staff member for further information.*`); } catch (error) { return this.client.util.handleError(error, message, this); }