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
This commit is contained in:
Tobias "ToBeFree" Frei 2014-02-23 19:31:59 +01:00
parent dd80dbb7ca
commit eda0bc2df8

View File

@ -2021,7 +2021,7 @@ def see(cli, nick, rest):
cli.notice(nick, "You're not currently playing.") cli.notice(nick, "You're not currently playing.")
return return
if not var.is_role(nick, "seer"): 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 return
if var.PHASE != "night": if var.PHASE != "night":
pm(cli, nick, "You may only have visions at night.") pm(cli, nick, "You may only have visions at night.")