Add cheese command

This commit is contained in:
Jeff 2024-06-12 22:05:06 -04:00
parent be06387316
commit 0f07c72fd2

View File

@ -116,6 +116,9 @@ impl Bot {
self.kick_players(words) self.kick_players(words)
} }
} }
"cheese" => {
self.client.send_chat("/g I love cheese!".to_string());
}
_ => {} _ => {}
} }
} }