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'])