fix get referral
parent
99fa3b38bd
commit
4a6db79cef
|
@ -19,6 +19,9 @@ export default class AddReferral extends Command {
|
||||||
if (!account) return this.error(message.channel, 'Cannot find user.');
|
if (!account) return this.error(message.channel, 'Cannot find user.');
|
||||||
|
|
||||||
await account.updateOne({ $inc: { totalReferrals: 1 } });
|
await account.updateOne({ $inc: { totalReferrals: 1 } });
|
||||||
|
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.');
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return this.client.util.handleError(error, message, this);
|
return this.client.util.handleError(error, message, this);
|
||||||
|
|
Loading…
Reference in New Issue