diff --git a/bot.py b/bot.py index 0ec26e8..a142d97 100755 --- a/bot.py +++ b/bot.py @@ -74,7 +74,7 @@ class Server(BaseServer): elif line.params[1].startswith(".list"): user = line.source.split('!')[0] if len(line.params[1].split(" ")) < 2: - await self.send(build("PRIVMSG", [user, "list: " + str(match_players[self.name + '-' + chan])])) + await self.send(build("PRIVMSG", [chan, "list: " + str(list(match_players[self.name + '-' + chan].keys()))])) else: game = " ".join(line.params[1].split(" ")[1:]).lower() if game not in match_players[self.name + '-' + chan]: @@ -100,7 +100,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 to list; .del game: Remove from list; .match game: Ping everyone on list"])) + await self.send(build("PRIVMSG", [chan, " .add game: Add to list; .del game: Remove from list; .match game: Ping everyone on list; .list game: list people added to the game; .list: list games"])) async def line_send(self, line: Line): print(f"{self.name} > {line.format()}")