1
mirror of git://git.acid.vegas/IRCP.git synced 2024-11-22 16:06:41 +00:00

Fixed typo in RPL_ENDOFWHO

This commit is contained in:
Dionysus 2023-06-28 23:09:59 -04:00
parent 72df0c3591
commit dd94aabfcb
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -365,7 +365,7 @@ class probe:
error(self.display + '\033[93mProxy Monitor detected\033[0m', nick)
else:
debug(f'{self.display}\033[34mWHOIS\033[0m {nick}')
elif event == 315 and len*args) >= 3: # RPL_ENDOFWHO
elif event == 315 and len(args) >= 3: # RPL_ENDOFWHO
chan = args[3]
await self.raw(f'MODE {chan} +b')
await asyncio.sleep(throttle.commands)