Allow user/reply mentions

This commit is contained in:
TheEssem 2021-03-18 21:24:37 -05:00
parent 9f300f763a
commit 07e1fa8dc2

View file

@ -16,7 +16,9 @@ const client = new Client(process.env.TOKEN, {
maxShards: "auto", maxShards: "auto",
allowedMentions: { allowedMentions: {
everyone: false, everyone: false,
roles: false roles: false,
users: true,
repliedUser: true
} }
}); });
module.exports = client; module.exports = client;