From 19ffa45c3807d343e0258860ed4d820b5462951c Mon Sep 17 00:00:00 2001 From: franzo Date: Thu, 6 Oct 2022 00:21:29 +0200 Subject: [PATCH] fix: minor cmd list fix --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 6b024d0..7eb5d2d 100755 --- a/bot.py +++ b/bot.py @@ -140,7 +140,7 @@ class Server(BaseServer): await self.send(build("PRIVMSG", [chan, "Removed " + user + " from the " + game + " match list."])) elif line.params[1].startswith(".help"): - await self.send(build("PRIVMSG", [chan, " .add game: Add user to the game list; .del game: Remove user from the game list; .match game: Ping everyone on the game list; .list game: list people added to the game; .list: list games; .remove game: removes the game from the list (admin command); .lastPlayed: show the last played game"])) + await self.send(build("PRIVMSG", [chan, " .add game: Add user to the game list; .del game: Remove user from the game list; .match game: Ping everyone on the game list; .list game: list people added to the game; .list: list games; .remove game: removes the game from the list (admin command); .last: show last played game"])) async def line_send(self, line: Line): print(f"{self.name} > {line.format()}")