Fix oversight

This commit is contained in:
Vgr E. Barry 2017-09-02 10:03:24 -04:00
parent d89534f259
commit b73d4e79c1

View File

@ -213,7 +213,7 @@ def on_transition_night_end(evt, var):
to_send = "vengeful_ghost_notify" to_send = "vengeful_ghost_notify"
if v_ghost.prefers_simple(): if v_ghost.prefers_simple():
to_send = "vengeful_ghost_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))) debuglog("GHOST: {0} (target: {1}) - players: {2}".format(v_ghost, who, ", ".join(p.nick for p in pl)))
@event_listener("myrole") @event_listener("myrole")