From c09ff6a7065e65d0095b18267b5e7844c5107249 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 8 Aug 2016 22:23:42 -0700 Subject: [PATCH] relay_clientbot: fix config key name --- plugins/relay_clientbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/relay_clientbot.py b/plugins/relay_clientbot.py index 1e9267c..2af176b 100644 --- a/plugins/relay_clientbot.py +++ b/plugins/relay_clientbot.py @@ -47,7 +47,7 @@ def cb_relay_core(irc, source, command, args): relay_conf = conf.conf.get('relay', {}) # Be less floody on startup: don't relay non-PRIVMSGs for the first X seconds after connect. - startup_delay = relay_conf.get('startup_delay', 5) + startup_delay = relay_conf.get('clientbot_startup_delay', 5) # Special case for CTCPs. if real_command == 'MESSAGE':