diff --git a/bot.py b/bot.py index 9ac3e80..84769d6 100755 --- a/bot.py +++ b/bot.py @@ -57,11 +57,7 @@ class Server(BaseServer): await self.send(build("PRIVMSG", [chan, "Removed from match list."])) elif line.params[1].startswith(".help"): - await self.send(build("PRIVMSG", [chan, "Matchmaking bot commands:"])) - await self.send(build("PRIVMSG", [chan, " .matchadd: Add yourself to the match list"])) - await self.send(build("PRIVMSG", [chan, " .matchdel: Remove yourself from the match list"])) - await self.send(build("PRIVMSG", [chan, " .matchmake: Ping everyone on match list"])) - await self.send(build("PRIVMSG", [chan, " .help: Display this message"])) + await self.send(build("PRIVMSG", [chan, " .matchadd: Add to list; .matchdel: Remove from list; .matchmake: Ping everyone on list"])) async def line_send(self, line: Line): print(f"{self.name} > {line.format()}")