disable WHO

joins are too speedy
This commit is contained in:
xfnw 2022-02-14 17:36:44 -07:00
parent 4ed3c6bdd8
commit d3935c53cf

4
bam.py
View file

@ -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()}")