Allow user/reply mentions
This commit is contained in:
parent
9f300f763a
commit
07e1fa8dc2
1 changed files with 3 additions and 1 deletions
|
@ -16,7 +16,9 @@ const client = new Client(process.env.TOKEN, {
|
|||
maxShards: "auto",
|
||||
allowedMentions: {
|
||||
everyone: false,
|
||||
roles: false
|
||||
roles: false,
|
||||
users: true,
|
||||
repliedUser: true
|
||||
}
|
||||
});
|
||||
module.exports = client;
|
||||
|
|
Loading…
Reference in a new issue