From a2201c506127f710f66e6f61a26f95d9308a1ceb Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Sat, 6 Sep 2014 21:22:57 +0200 Subject: [PATCH] Fix mad scientist message --- modules/wolfgame.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 63fa325..eb31fbe 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -4647,10 +4647,10 @@ def transition_night(cli): for ms in var.ROLES["mad scientist"]: if ms in var.PLAYERS and var.PLAYERS[ms]["cloak"] not in var.SIMPLE_NOTIFY: - pm(cli, ms, ("You are the \u0002mad scientist\u0002. If you are lynched during " + - "the day, you will let loose a potent chemical concoction that will " + - "kill the players that joined immediately before and after you if " + - "they are still alive.")) + pm(cli, ms, ("You are the \u0002mad scientist\u0002. If you die for any reason " + + "other than idling out or quitting, you will let loose a potent " + + "chemical concoction that will kill the players that joined " + + "immediately before and after you if they are still alive.")) else: pm(cli, ms, "You are the \u0002mad scientist\u0002.")