From b957f9922a53721cda307020e127d471a4dd1a42 Mon Sep 17 00:00:00 2001 From: jcao219 Date: Mon, 22 Aug 2011 16:25:46 -0500 Subject: [PATCH] fix bug 56 --- wolfgame.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wolfgame.py b/wolfgame.py index 71bdc2f..a8c33be 100644 --- a/wolfgame.py +++ b/wolfgame.py @@ -1092,8 +1092,9 @@ def leave(cli, what, nick, why=""): return if var.PHASE == "none": return - if nick not in var.list_players(): + if nick not in var.list_players() or nick in var.DISCONNECTED.keys(): return + # the player who just quit was in the game killhim = True