From 3d7555d60e83a1f581c423b64bef02cc1502a318 Mon Sep 17 00:00:00 2001 From: Sakuhl <2012collector@gmail.com> Date: Wed, 17 Jan 2018 15:59:26 +0100 Subject: [PATCH] Readd playing message --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index a4e6a33..e43c90e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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")); } }