Readd playing message

This commit is contained in:
Sakuhl 2018-01-17 15:59:26 +01:00
parent 7ddd254404
commit 3d7555d60e

View File

@ -72,6 +72,7 @@ impl EventHandler for Handler {
// In this case, just print what the current bot's username is.
fn on_ready(&self, ctx: Context, ready: Ready) {
println!("{} is connected!", ready.user.name);
ctx.set_game(Game::playing("wc!help"));
}
}