From 6fecec6df3e3986e693f884a38d6407201579e73 Mon Sep 17 00:00:00 2001 From: skizzerz Date: Thu, 30 Jul 2015 13:06:48 -0500 Subject: [PATCH] Re-add limit for fwait Now restricted to adding/removing 900 seconds (15 minutes). There are no valid reasons I can think of or that were given in -dev that would require more time than this. 15 minutes is still likely too much and from previous experience such long forced waits generally trigger a mass exodus of players who would rather play a game than doing absolutely nothing. --- src/wolfgame.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wolfgame.py b/src/wolfgame.py index 1bd3f31..3041aed 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -7405,6 +7405,7 @@ def fwait(cli, nick, chan, rest): extra = var.EXTRA_WAIT now = datetime.now() + extra = max(-900, min(900, extra)) if now > var.CAN_START_TIME: var.CAN_START_TIME = now + timedelta(seconds=extra)