From 07e1fa8dc26ccf193dc3050bd70962c3bd64ca41 Mon Sep 17 00:00:00 2001 From: TheEssem Date: Thu, 18 Mar 2021 21:24:37 -0500 Subject: [PATCH] Allow user/reply mentions --- utils/client.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/client.js b/utils/client.js index 87f771c..0d2f5ca 100644 --- a/utils/client.js +++ b/utils/client.js @@ -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;