Merge pull request #73 from Romtam/master

Added missing dot in !abs limit on first day
This commit is contained in:
nyuszika7h 2014-09-26 14:40:20 +02:00
commit 3937eae6c8

View File

@ -2761,7 +2761,7 @@ def no_lynch(cli, nick, chan, rest):
cli.notice(nick, "The village has already abstained once this game and may not do so again.") cli.notice(nick, "The village has already abstained once this game and may not do so again.")
return return
elif var.LIMIT_ABSTAIN and var.FIRST_DAY: elif var.LIMIT_ABSTAIN and var.FIRST_DAY:
cli.notice(nick, "The village may not abstain on the first day") cli.notice(nick, "The village may not abstain on the first day.")
return return
elif var.PHASE != "day": elif var.PHASE != "day":
cli.notice(nick, "Lynching is only during the day. Please wait patiently for morning.") cli.notice(nick, "Lynching is only during the day. Please wait patiently for morning.")