From 92496ac7282b874e8d3dd2fba9bd53d0cc29adc7 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 23 May 2020 23:20:16 -0400 Subject: [PATCH] Don't use privileged intents --- Xiao.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xiao.js b/Xiao.js index ceb0cfd3..47855236 100644 --- a/Xiao.js +++ b/Xiao.js @@ -8,7 +8,7 @@ const client = new Client({ owner: OWNERS.split(','), invite: INVITE, disableMentions: 'everyone', - ws: { intents: Intents.ALL } + ws: { intents: Intents.NON_PRIVILEGED } }); const { formatNumber } = require('./util/Util');