From a979f73890a1d0cfe4cc688d33191ed60b0f2a4e Mon Sep 17 00:00:00 2001 From: Matthew Ray Date: Fri, 22 May 2020 22:24:51 -0400 Subject: [PATCH] send msgs to terminals on certain actions --- src/commands/tier.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/tier.ts b/src/commands/tier.ts index 41376ae..6c14d6d 100644 --- a/src/commands/tier.ts +++ b/src/commands/tier.ts @@ -37,7 +37,7 @@ export default class Tier extends Command { embed.addField('Old Tier -> New Tier', `${account.tier} -> ${args[1]}`, true); embed.setFooter(this.client.user.username, this.client.user.avatarURL); embed.setTimestamp(); - await this.client.util.sendMessageToUserTerminal(account.username, `A technician has upgraded your tier to ${args[1]}`).catch(() => { }); + await this.client.util.sendMessageToUserTerminal(account.username, `A technician has changed your tier to ${args[1]}`).catch(() => { }); this.client.createMessage('580950455581147146', { embed }); return this.client.getDMChannel(account.userID).then((channel) => channel.createMessage({ embed })).catch(); } catch (error) { return this.client.util.handleError(error, message, this);