diff --git a/src/bot_runner.rs b/src/bot_runner.rs index 1788c61..d344ab1 100644 --- a/src/bot_runner.rs +++ b/src/bot_runner.rs @@ -17,7 +17,7 @@ pub struct Data { impl BotRunner { pub async fn new(server: Box) -> Self { let token = server.app_token(); - let mut commands = vec![players(), join()]; + let mut commands = vec![players(), join(), about()]; if let Some(_contact_id) = server.contact() { commands.push(contact()); }