From b342c6c53e83befce3a5db6309b565710c4e826f Mon Sep 17 00:00:00 2001 From: "Vgr E. Barry" Date: Sun, 27 Dec 2015 23:23:05 -0500 Subject: [PATCH] Fix issue with !quit at the beginning of the game --- src/wolfgame.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wolfgame.py b/src/wolfgame.py index 9637713..42a88aa 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -7280,7 +7280,6 @@ def start(cli, nick, chan, forced = False, restart = ""): return now = datetime.now() - var.GAME_START_TIME = now # Only used for the idler checker dur = int((var.CAN_START_TIME - now).total_seconds()) if dur > 0 and not forced: plural = "" if dur == 1 else "s" @@ -7653,7 +7652,7 @@ def start(cli, nick, chan, forced = False, restart = ""): reapertimer.daemon = True reapertimer.start() - + var.GAME_START_TIME = datetime.now() @hook("error") def on_error(cli, pfx, msg):