diff options
Diffstat (limited to 'src/core/handler.rs')
| -rw-r--r-- | src/core/handler.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/handler.rs b/src/core/handler.rs index 2074567..60258db 100644 --- a/src/core/handler.rs +++ b/src/core/handler.rs @@ -106,8 +106,9 @@ impl EventHandler for Handler { // let guild_count = guilds.len(); // ctx.set_game(Game::listening(&format!("{} guilds | m!help", guild_count))); - // ctx.set_game(Game::playing("w.help | v0.1.0")); - ctx.set_game(Game::playing(&*format!("w.help | v{}", env!("CARGO_PKG_VERSION")))); + ctx.set_game(Game::playing("w.help | v0.1.2")); + // ctx.set_game(Game::playing(&*format!("w.help | v{}", + // option_env!("CARGO_PKG_VERSION").unwrap_or("0.1.0")))); info!("Caching complete."); } |