forked from Supositware/Haha-Yes
Resolve the user first
This commit is contained in:
parent
cc25953e90
commit
16ddd8b388
1 changed files with 4 additions and 1 deletions
|
@ -33,7 +33,10 @@ export default {
|
|||
const body = { type:command, uid: userid, reason: reason };
|
||||
Blacklists.create(body);
|
||||
let user = userid;
|
||||
if (command !== 'guild') {user = client.users.fetch(userid).tag;}
|
||||
if (command !== 'guild') {
|
||||
await client.users.resolve(userid);
|
||||
user = client.users.fetch(userid).tag;
|
||||
}
|
||||
|
||||
return interaction.editReply(`${user} has been blacklisted from ${command} with the following reason ${reason}`);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue