diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ed10360..3bceb37 100644 --- a/src/main.rs +++ b/src/main.rs @@ -74,7 +74,7 @@ async fn main() -> Result<()> { } // Start up the client. - let intents = GatewayIntents::default(); + let intents = GatewayIntents::default() | GatewayIntents::MESSAGE_CONTENT; Client::builder(&args.discord_token, intents) .event_handler(Handler::from(HandlerConfig { db_dir: args.db_dir, |