From 4e1b17ada689056a9a1e11c10f332926c5d90096 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Fri, 30 Oct 2015 19:14:32 -0400 Subject: [PATCH] fix !fquit in join phase --- src/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wolfgame.py b/src/wolfgame.py index 312d0c4..e60e3b2 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -1369,7 +1369,7 @@ def fleave(cli, nick, chan, rest): continue pl = var.list_players() pll = [x.lower() for x in pl] - dcl = list(var.DEADCHAT_PLAYERS) + dcl = list(var.DEADCHAT_PLAYERS) if var.PHASE != "join" else [] dcll = [x.lower() for x in dcl] if a.lower() in pll: a = pl[pll.index(a.lower())]