From af744123e632ba823d34d5afb710c355c1415001 Mon Sep 17 00:00:00 2001 From: James Lu Date: Tue, 17 Apr 2018 15:21:56 -0700 Subject: [PATCH] automode: join channels regardless of whether they're empty --- plugins/automode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/automode.py b/plugins/automode.py index 19411d5..5cce99a 100644 --- a/plugins/automode.py +++ b/plugins/automode.py @@ -40,7 +40,7 @@ def main(irc=None): netname, channel = entry.split('#', 1) channel = '#' + channel log.debug('automode: auto-joining %s on %s', channel, netname) - modebot.join(netname, channel) + modebot.join(netname, channel, ignore_empty=True) def die(irc=None): """Saves the Automode database and quit."""