This commit is contained in:
jude 2022-05-13 14:21:34 +01:00
parent 37e5c50800
commit 0e7a4d02de

View File

@ -419,15 +419,13 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
let mut client = Client::builder(
&token,
if dm_enabled {
GatewayIntents::MESSAGE_CONTENT
| GatewayIntents::GUILD_MESSAGES
GatewayIntents::GUILD_MESSAGES
| GatewayIntents::GUILDS
| GatewayIntents::GUILD_MESSAGE_REACTIONS
| GatewayIntents::DIRECT_MESSAGES
| GatewayIntents::DIRECT_MESSAGE_REACTIONS
} else {
GatewayIntents::MESSAGE_CONTENT
| GatewayIntents::GUILD_MESSAGES
GatewayIntents::GUILD_MESSAGES
| GatewayIntents::GUILDS
| GatewayIntents::GUILD_MESSAGE_REACTIONS
},