Add some missing periods

This commit is contained in:
nyuszika7h 2015-11-06 15:22:57 +01:00
parent 7d6fab1f01
commit 6aedc39352

View File

@ -1349,7 +1349,7 @@ def fleave(cli, nick, chan, rest):
dcll = [x.lower() for x in dcl]
if a.lower() in pll:
if chan != botconfig.CHANNEL:
reply(cli, nick, chan, "Forcing a live player to leave must be done in channel", private=True)
reply(cli, nick, chan, "Forcing a live player to leave must be done in channel.", private=True)
return
a = pl[pll.index(a.lower())]
@ -1379,7 +1379,7 @@ def fleave(cli, nick, chan, rest):
leave_deadchat(cli, a, force=nick)
if nick.lower() not in dcll:
reply(cli, nick, chan, "You have forced {0} to leave the deadchat".format(a), private=True)
reply(cli, nick, chan, "You have forced {0} to leave the deadchat.".format(a), private=True)
else:
cli.msg(chan, nick+": That person is not playing.")