From b3d6ce3f17e618b03b89fe998a2422798888863e Mon Sep 17 00:00:00 2001 From: "mr.Shu" Date: Sun, 20 Apr 2014 12:28:49 +0200 Subject: [PATCH] IRC rooms in config should start with # It took me a while to realize this. If they don't it can have undesired side effects (the whole delay_task and loop_task mechanism will stop working and your log size will increase dramatically). --- brutal/spawn/spawn_template/spawn_name/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/brutal/spawn/spawn_template/spawn_name/config.py b/brutal/spawn/spawn_template/spawn_name/config.py index f56d170..7256420 100644 --- a/brutal/spawn/spawn_template/spawn_name/config.py +++ b/brutal/spawn/spawn_template/spawn_name/config.py @@ -27,7 +27,7 @@ # 'port': 6667, # 'use_ssl': False, # default or irc # 'password': '', - # 'channels': ['room', ('private_room', 'pass')] + # 'channels': ['#room', ('#private_room', 'pass')] # } ], 'enabled_plugins': { @@ -45,9 +45,9 @@ # 'port': 6667, # 'use_ssl': False, # default or irc # 'password': '', - # 'channels': ['room', ('private_room', 'pass')] + # 'channels': ['#room', ('#private_room', 'pass')] # } # ], # 'plugin_settings': {} # } -] \ No newline at end of file +]