START_QUIT_DELAY: fix duration check

This commit is contained in:
Janik Kleinhoff 2015-01-01 19:19:56 +00:00
parent b1e59c4f77
commit 698d6f86ae

View File

@ -2732,7 +2732,7 @@ def leave_game(cli, nick, chan, rest):
population = (" New player count: \u0002{0}\u0002").format(lpl)
else:
dur = int(var.START_QUIT_DELAY - (datetime.now() - var.GAME_START_TIME).total_seconds())
if var.START_QUIT_DELAY and dur:
if var.START_QUIT_DELAY and dur > 0:
cli.notice(nick, "The game already started! If you still want to quit, try again in {0} second{1}.".format(dur, "" if dur == 1 else "s"))
return
population = ""