From a3cf5cb7808c57156e09662daf506fb896fe4738 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Fri, 21 Feb 2014 10:05:41 +0100 Subject: [PATCH] Fix previous commit --- modules/wolfgame.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index ff7f0f6..68835a7 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -3005,10 +3005,10 @@ def player_stats(cli, nick, chan, rest): user = params[0] # Find the player's account if possible. - if params[0] in var.USERS: - acc = var.USERS[params[0]]["account"] + if user in var.USERS: + acc = var.USERS[user]["account"] 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 else: acc = params[0]