Fix previous commit
This commit is contained in:
parent
91e7816861
commit
a3cf5cb780
@ -3005,10 +3005,10 @@ def player_stats(cli, nick, chan, rest):
|
|||||||
user = params[0]
|
user = params[0]
|
||||||
|
|
||||||
# Find the player's account if possible.
|
# Find the player's account if possible.
|
||||||
if params[0] in var.USERS:
|
if user in var.USERS:
|
||||||
acc = var.USERS[params[0]]["account"]
|
acc = var.USERS[user]["account"]
|
||||||
if acc == "*":
|
if acc == "*":
|
||||||
cli.notice(nick, "{0} is not identified with NickServ.".format(params[0]))
|
cli.notice(nick, "{0} is not identified with NickServ.".format(user))
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
acc = params[0]
|
acc = params[0]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user