From d3935c53cf851541f05cf7341d7b9fa12fec6f03 Mon Sep 17 00:00:00 2001 From: xfnw Date: Mon, 14 Feb 2022 17:36:44 -0700 Subject: [PATCH] disable WHO joins are too speedy --- bam.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bam.py b/bam.py index 6b67116..e72ce06 100644 --- a/bam.py +++ b/bam.py @@ -20,6 +20,10 @@ class Server(BaseServer): self.__getattribute__("on_" + line.command.lower())(line) ) + # disable automatic WHOing + async def _next_who(self): + pass + async def line_send(self, line): print(f"{self.name} > {line.format()}")