From 0f07c72fd2cebd52341d1a67f70dea1ba56f37ee Mon Sep 17 00:00:00 2001 From: Jeff Date: Wed, 12 Jun 2024 22:05:06 -0400 Subject: [PATCH] Add cheese command --- src/bot.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bot.rs b/src/bot.rs index 0f11f6d..a3b1560 100644 --- a/src/bot.rs +++ b/src/bot.rs @@ -116,6 +116,9 @@ impl Bot { self.kick_players(words) } } + "cheese" => { + self.client.send_chat("/g I love cheese!".to_string()); + } _ => {} } }