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:
nyuszika7h 2015-01-07 19:51:08 +01:00
parent 667b824065
commit 59a6339729

View File

@ -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: