From eda0bc2df8ce68d8408637c7fb59a58b12e8d7fc Mon Sep 17 00:00:00 2001 From: "Tobias \"ToBeFree\" Frei" Date: Sun, 23 Feb 2014 19:31:59 +0100 Subject: [PATCH] Adding a period to the end of the sentence thanks to Calinou for pointing out this issue! :-) I've looked through the rest of the code; it seems to be the only issue of that kind. If you find more, report in ##wolfgame-dev --- modules/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 32dd00a..ef7c7b3 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -2021,7 +2021,7 @@ def see(cli, nick, rest): cli.notice(nick, "You're not currently playing.") return if not var.is_role(nick, "seer"): - pm(cli, nick, "Only a seer may use this command") + pm(cli, nick, "Only a seer may use this command.") return if var.PHASE != "night": pm(cli, nick, "You may only have visions at night.")