From 13f919fc63de608e2ebbef43277c2823569fafe6 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 30 Jan 2017 00:09:03 +0100 Subject: [PATCH] Change default IDLE_TIMEOUT to -1; no need for a timeout during development. --- evennia/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/settings_default.py b/evennia/settings_default.py index de2845a9d7..822f082cc8 100644 --- a/evennia/settings_default.py +++ b/evennia/settings_default.py @@ -140,7 +140,7 @@ LANGUAGE_CODE = 'en-us' # out. This can be set as big as desired. A user may avoid being # thrown off by sending the empty system command 'idle' to the server # at regular intervals. Set <=0 to deactivate idle timeout completely. -IDLE_TIMEOUT = 3600 +IDLE_TIMEOUT = -1 # The idle command can be sent to keep your session active without actually # having to spam normal commands regularly. It gives no feedback, only updates # the idle timer. Note that "idle" will *always* work, even if a different