From d059d430d21519f06e66be2ec9b9b6487c5685aa Mon Sep 17 00:00:00 2001 From: Matthew R Date: Fri, 28 Aug 2020 03:13:49 -0400 Subject: [PATCH] fix get referral --- src/commands/addreferral.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/addreferral.ts b/src/commands/addreferral.ts index c59a5aa..60c7078 100644 --- a/src/commands/addreferral.ts +++ b/src/commands/addreferral.ts @@ -22,7 +22,7 @@ export default class AddReferral extends Command { this.client.getDMChannel(account.userID).then((chan) => { chan.createMessage('__**Referral - Application Approval**__\nAn applicant who used your referral code during the application process has been approved. Your referral count has been increased.'); }).catch(() => {}); - return this.success(message.channel, 'Added referral value to account.'); + return this.success(message.channel, `Added referral value to account.\nReferrer: \`${account.username}\` | <@${account.userID}>`); } catch (error) { return this.client.util.handleError(error, message, this); }