Don't use privileged intents

This commit is contained in:
Dragon Fire
2020-05-23 23:20:16 -04:00
parent ed0d000cb7
commit 92496ac728
+1 -1
View File
@@ -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');