Unify "not logged in to NickServ" notices
In some places, the bot says "not logged in to NickServ", while in other places, it saays "not identified with NickServ". This changes all such notices to use the first form.
This commit is contained in:
parent
667b824065
commit
59a6339729
@ -6513,9 +6513,9 @@ def player_stats(cli, nick, chan, rest):
|
||||
acc = lusers[luser]['account']
|
||||
if acc == '*':
|
||||
if luser == nick.lower():
|
||||
cli.notice(nick, 'You are not identified with NickServ.')
|
||||
cli.notice(nick, 'You are not logged in to NickServ.')
|
||||
else:
|
||||
cli.notice(nick, user + ' is not identified with NickServ.')
|
||||
cli.notice(nick, user + ' is not logged in to NickServ.')
|
||||
|
||||
return
|
||||
else:
|
||||
|
Loading…
x
Reference in New Issue
Block a user