1
mirror of git://git.acid.vegas/random.git synced 2024-11-14 12:06:38 +00:00
This commit is contained in:
Dionysus 2020-05-19 00:08:34 -04:00
parent 079556dc5e
commit a00b7b4eac
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -68,7 +68,7 @@ class IRC:
async def _event_end_of_names(self): async def _event_end_of_names(self):
self.scanning = False self.scanning = False
for name in self.names['found']: 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) await asyncio.sleep(2)
if self.names['idle']: if self.names['idle']:
target = random.choice(self.names['idle']) target = random.choice(self.names['idle'])