aboutsummaryrefslogtreecommitdiff
path: root/bot/src/bot.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-08 00:11:03 -0500
committerAndrew Lee <andrew@alee14.me>2025-03-08 00:11:03 -0500
commit52f8826e526f0c0aadb86c3e29975aef4dc1ab85 (patch)
tree910308d13df0e139dd18eb10fcbb92c014d9caef /bot/src/bot.js
parentc921e5cf8862def58029bd1801074c51113f86ae (diff)
downloadAleeBot-52f8826e526f0c0aadb86c3e29975aef4dc1ab85.tar.gz
AleeBot-52f8826e526f0c0aadb86c3e29975aef4dc1ab85.tar.bz2
AleeBot-52f8826e526f0c0aadb86c3e29975aef4dc1ab85.zip
Bulk delete message event; Guild suggestions; sinfo + uinfo
Diffstat (limited to 'bot/src/bot.js')
-rw-r--r--bot/src/bot.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/bot.js b/bot/src/bot.js
index 3236817..91c26c8 100644
--- a/bot/src/bot.js
+++ b/bot/src/bot.js
@@ -1,7 +1,7 @@
import { Client, GatewayIntentBits } from 'discord.js';
import 'dotenv/config';
import { init } from './init.js';
-const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildBans ] });
+const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent, GatewayIntentBits.GuildBans] });
init(client);