From a00b7b4eacfa164efdb709a4d7ffb616b1602f32 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Tue, 19 May 2020 00:08:34 -0400 Subject: [PATCH] weird --- irc/bots/amber.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/bots/amber.py b/irc/bots/amber.py index 737d2c3..5c520dc 100644 --- a/irc/bots/amber.py +++ b/irc/bots/amber.py @@ -68,7 +68,7 @@ class IRC: async def _event_end_of_names(self): self.scanning = False for name in self.names['found']: - self._raw('WHOIS ' + name) + self._raw(f'WHOIS {name} {name}') # Have to double to nick to see far-connected idle times? Weird... await asyncio.sleep(2) if self.names['idle']: target = random.choice(self.names['idle'])