From 5e40d5651c761c7347e7d95da61cd0d290b4a2f8 Mon Sep 17 00:00:00 2001 From: jcao219 Date: Mon, 8 Aug 2011 19:25:57 -0500 Subject: [PATCH] drunk is only pm'd on the first night --- wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfgame.py b/wolfgame.py index 9d37e03..099a418 100644 --- a/wolfgame.py +++ b/wolfgame.py @@ -1776,7 +1776,7 @@ def transition_night(cli): "But, each time you use your ability, you risk a 2/5 "+ "chance of having your identity revealed to the wolves. So be "+ "careful. Use \"!id\" to identify any player during the day.")) - for d in var.ROLES["village drunk"]: + for d in var.ROLES["village drunk"] and var.FIRST_NIGHT: cli.msg(d, 'You have been drinking too much! You are the \u0002village drunk\u0002.') for g in tuple(var.GUNNERS.keys()):