mirror of
git://git.acid.vegas/IRCP.git
synced 2024-11-22 07:56:42 +00:00
Store new nickname on 401 ERR_NICKINUSE
This commit is contained in:
parent
349a74b79e
commit
0325e73ebf
6
ircp.py
6
ircp.py
@ -385,10 +385,8 @@ class probe:
|
||||
if 'You must be connected for' in msg:
|
||||
error(self.display + '\033[31merror\033[0m - delay found', msg)
|
||||
elif event == '433': # ERR_NICKINUSE
|
||||
if not settings.nickname:
|
||||
await self.raw('NICK ' + rndnick())
|
||||
else:
|
||||
await self.raw('NICK ' + settings.nickname + str(random.randint(1000,9999)))
|
||||
self.nickanme = rndnick()
|
||||
await self.raw('NICK ' + self.nickname)
|
||||
elif event == '439' and len(args) >= 5: # ERR_TARGETTOOFAST
|
||||
chan = args[3]
|
||||
msg = ' '.join(args[4:])[1:]
|
||||
|
Loading…
Reference in New Issue
Block a user