This commit is contained in:
August 2026-05-21 21:43:53 -04:00
parent e5ac08f990
commit 5e181b7a0a
Signed by: shibedrill
SSH Key Fingerprint: SHA256:M0m3JW1s38BgO2t0fG146Yxd9OJ2IOqkvCAsuRHQ6Pw

View File

@ -17,7 +17,7 @@ pub struct Data {
impl BotRunner { impl BotRunner {
pub async fn new(server: Box<dyn ServerInfo>) -> Self { pub async fn new(server: Box<dyn ServerInfo>) -> Self {
let token = server.app_token(); 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() { if let Some(_contact_id) = server.contact() {
commands.push(contact()); commands.push(contact());
} }