From 95133160ab294e68f46b4db5dd8414ae1d18eb06 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Tue, 18 Oct 2016 15:06:33 +0200 Subject: [PATCH] Tell dullahan their role at night even if targets dead --- src/roles/dullahan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roles/dullahan.py b/src/roles/dullahan.py index 0a57080..c280266 100644 --- a/src/roles/dullahan.py +++ b/src/roles/dullahan.py @@ -177,7 +177,7 @@ def on_transition_night_end(evt, cli, var): if target in targets: targets.remove(target) if not targets: # already all dead - pm(cli, dullahan, messages["dullahan_targets_dead"]) + pm(cli, dullahan, "{0} {1}".format(messages["dullahan_simple"], messages["dullahan_targets_dead"])) continue random.shuffle(targets) if dullahan in var.PLAYERS and not is_user_simple(dullahan):