From b73d4e79c132d0910879608f92299a6eec1cfdd5 Mon Sep 17 00:00:00 2001 From: "Vgr E. Barry" Date: Sat, 2 Sep 2017 10:03:24 -0400 Subject: [PATCH] Fix oversight --- src/roles/vengefulghost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roles/vengefulghost.py b/src/roles/vengefulghost.py index 646070d..e806c4f 100644 --- a/src/roles/vengefulghost.py +++ b/src/roles/vengefulghost.py @@ -213,7 +213,7 @@ def on_transition_night_end(evt, var): to_send = "vengeful_ghost_notify" if v_ghost.prefers_simple(): to_send = "vengeful_ghost_simple" - v_ghost.send(messages[to_send].format(who), who.capitalize() + ": " + ", ".join(pl), sep="\n") + v_ghost.send(messages[to_send].format(who), who.capitalize() + ": " + ", ".join(p.nick for p in pl), sep="\n") debuglog("GHOST: {0} (target: {1}) - players: {2}".format(v_ghost, who, ", ".join(p.nick for p in pl))) @event_listener("myrole")