fix hiro's fuckups x2
parent
f40dae8b4d
commit
79dae33fac
|
@ -10,7 +10,7 @@ export default class Profile extends Command {
|
||||||
super(client);
|
super(client);
|
||||||
this.name = 'profile';
|
this.name = 'profile';
|
||||||
this.description = 'Manages your profile on CR.';
|
this.description = 'Manages your profile on CR.';
|
||||||
this.usage = 'profile <bio/github/gitlab> <new value>\n*Provide no value in subcommand to clear data.';
|
this.usage = 'profile <bio/github/gitlab> <new value>\n*Provide no value in subcommand to clear data.*';
|
||||||
this.permissions = 0;
|
this.permissions = 0;
|
||||||
this.enabled = true;
|
this.enabled = true;
|
||||||
this.subcmds = [Profile_Bio, Profile_GitHub, Profile_Gitlab];
|
this.subcmds = [Profile_Bio, Profile_GitHub, Profile_Gitlab];
|
||||||
|
|
|
@ -56,7 +56,7 @@ export default class Whois extends Command {
|
||||||
if (ackResolve?.extension) {
|
if (ackResolve?.extension) {
|
||||||
description += `☎️ ${ackResolve.extension}\n`;
|
description += `☎️ ${ackResolve.extension}\n`;
|
||||||
}
|
}
|
||||||
const memberProfile = await this.client.db.Member.findOne({ userID: message.author.id }).lean().exec();
|
const memberProfile = await this.client.db.Member.findOne({ userID: member.id }).lean().exec();
|
||||||
if (memberProfile?.additional?.gitlab) {
|
if (memberProfile?.additional?.gitlab) {
|
||||||
description += `${emotes.gitlab} ${memberProfile?.additional.gitlab}\n`;
|
description += `${emotes.gitlab} ${memberProfile?.additional.gitlab}\n`;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue