From a73d94376f589ed41efea78a060e7f18cf2c93fe Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Tue, 18 Aug 2020 16:34:28 -0700 Subject: [PATCH] Add top-level channels to example config Signed-off-by: Alek Ratzloff --- omnibot.example.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/omnibot.example.exs b/omnibot.example.exs index 91ed6c2..27e4870 100644 --- a/omnibot.example.exs +++ b/omnibot.example.exs @@ -5,6 +5,7 @@ config = %Config { server: "chat.freenode.net", port: 6667, ssl: false, + channels: ["#idleville"], plugins: [ # Required for operation of Omnibot. @@ -19,7 +20,7 @@ config = %Config { {Omnibot.Contrib.Linkbot, channels: :all}, # Fortune will spit out fun messages with the !fortune command - try it out! {Omnibot.Contrib.Fortune, channels: :all}, - {Omnibot.Contrib.Wordbot, channels: ["#idleville"], ignore: ["username"]}, + {Omnibot.Contrib.Wordbot, channels: :all, ignore: ["username"]}, ], #plugin_paths: [{"plugins", recurse: true}]