Fix missing period

This commit is contained in:
Janik Kleinhoff 2014-11-17 11:06:14 +00:00
parent 04c4b46a3e
commit ecc17933d9

View File

@ -3068,7 +3068,7 @@ def check_exchange(cli, actor, nick):
if var.DISEASED_WOLVES: if var.DISEASED_WOLVES:
pm(cli, actor, 'You are feeling ill tonight, and are unable to kill anyone.') pm(cli, actor, 'You are feeling ill tonight, and are unable to kill anyone.')
elif var.ANGRY_WOLVES and actor_role in ("wolf", "werecrow"): elif var.ANGRY_WOLVES and actor_role in ("wolf", "werecrow"):
pm(cli, actor, 'You are \u0002angry\u0002 tonight, and may kill two targets by using "kill <nick1> and <nick2>"') pm(cli, actor, 'You are \u0002angry\u0002 tonight, and may kill two targets by using "kill <nick1> and <nick2>".')
elif nick_role == "minion": elif nick_role == "minion":
wolves = var.list_players(var.WOLF_ROLES) wolves = var.list_players(var.WOLF_ROLES)
random.shuffle(wolves) random.shuffle(wolves)
@ -3099,7 +3099,7 @@ def check_exchange(cli, actor, nick):
if var.DISEASED_WOLVES: if var.DISEASED_WOLVES:
pm(cli, nick, 'You are feeling ill tonight, and are unable to kill anyone.') pm(cli, nick, 'You are feeling ill tonight, and are unable to kill anyone.')
elif var.ANGRY_WOLVES and nick_role in ("wolf", "werecrow"): elif var.ANGRY_WOLVES and nick_role in ("wolf", "werecrow"):
pm(cli, nick, 'You are \u0002angry\u0002 tonight, and may kill two targets by using "kill <nick1> and <nick2>"') pm(cli, nick, 'You are \u0002angry\u0002 tonight, and may kill two targets by using "kill <nick1> and <nick2>".')
elif actor_role == "minion": elif actor_role == "minion":
wolves = var.list_players(var.WOLF_ROLES) wolves = var.list_players(var.WOLF_ROLES)
random.shuffle(wolves) random.shuffle(wolves)