Examples: support new Serenity Intents init
Fixes up the serenity examples to account for a bunch of API changes on `next`/v0.11. Tested using `cargo make ready`.
This commit is contained in:
@@ -30,7 +30,8 @@ use serenity::{
|
||||
StandardFramework,
|
||||
},
|
||||
http::Http,
|
||||
model::{channel::Message, gateway::Ready, misc::Mentionable, prelude::ChannelId},
|
||||
model::{channel::Message, gateway::Ready, prelude::ChannelId},
|
||||
prelude::{GatewayIntents, Mentionable},
|
||||
Result as SerenityResult,
|
||||
};
|
||||
|
||||
@@ -72,7 +73,10 @@ async fn main() {
|
||||
.configure(|c| c.prefix("~"))
|
||||
.group(&GENERAL_GROUP);
|
||||
|
||||
let mut client = Client::builder(&token)
|
||||
let intents = GatewayIntents::non_privileged()
|
||||
| GatewayIntents::MESSAGE_CONTENT;
|
||||
|
||||
let mut client = Client::builder(&token, intents)
|
||||
.event_handler(Handler)
|
||||
.framework(framework)
|
||||
.register_songbird()
|
||||
|
||||
Reference in New Issue
Block a user