diff --git a/bot.py b/bot.py index 22de9dc..a63a0f9 100755 --- a/bot.py +++ b/bot.py @@ -24,7 +24,6 @@ def read_file(): for player in file: match_players.add(player[:-1]) #Remove newline - class Server(BaseServer): async def line_read(self, line: Line): print(f"{self.name} < {line.format()}") @@ -74,8 +73,6 @@ class Server(BaseServer): await self.send(build("PRIVMSG", [chan, " .matchmake: Ping everyone on match list"])) await self.send(build("PRIVMSG", [chan, " .help: Display this message"])) - - async def line_send(self, line: Line): print(f"{self.name} > {line.format()}")