IRCP

- information gathering tool for irc servers
git clone git://git.acid.vegas/IRCP.git
Log | Files | Refs | Archive | README | LICENSE

commit 5a6a0fa5c34155d843c078b5c71acca990f87b7b
parent e89c30217e27bbe1fd70df10ea7a019c41b4e343
Author: acidvegas <acid.vegas@acid.vegas>
Date: Mon, 29 May 2023 01:23:42 -0400

Fixed loop_nick not setting rndnick prior to /NICK

Diffstat:
Mircp.py | 2+-

1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ircp.py b/ircp.py
@@ -237,8 +237,8 @@ class probe:
 		try:
 			while True:
 				await asyncio.sleep(throttle.nick)
-				await self.raw('NICK ' + self.nickname)
 				self.nickname = rndnick()
+				await self.raw('NICK ' + self.nickname)
 		except asyncio.CancelledError:
 			pass
 		except Exception as ex: