From 2d14bdc0fe772bf1cbc65aefce6590ee9ecbacb9 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Mon, 30 Mar 2015 13:34:16 -0400 Subject: [PATCH] minion can use !myrole to get the original wolf list --- modules/wolfgame.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 9a2bff8..918f1eb 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -6909,6 +6909,14 @@ def myrole(cli, nick, chan, rest): if role in var.TOTEM_ORDER and role != "crazed shaman" and var.PHASE == "night" and nick not in var.SHAMANS: pm(cli, nick, "You have the \u0002{0}\u0002 totem.".format(var.TOTEMS[nick])) + #Give minion the wolf list they would have recieved night one + if role == "minion": + wolves = [] + for wolfrole in var.WOLF_ROLES: + for player in var.ORIGINAL_ROLES[wolfrole]: + wolves.append(player) + pm(cli, nick, "Original wolves: " + ", ".join(wolves)) + # Check for gun/bullets if nick not in ps: return