no more message gathering

This commit is contained in:
jude
2022-02-19 12:40:07 +00:00
parent febeeefb01
commit 0df5466052
5 changed files with 126 additions and 179 deletions

View File

@ -147,11 +147,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
.options(options)
.client_settings(move |client_builder| {
client_builder
.intents(
GatewayIntents::GUILD_VOICE_STATES
| GatewayIntents::GUILD_MESSAGES
| GatewayIntents::GUILDS,
)
.intents(GatewayIntents::GUILD_VOICE_STATES | GatewayIntents::GUILDS)
.register_songbird()
})
.run_autosharded()