diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-09-15 01:50:59 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-09-15 01:50:59 +0200 |
commit | 50d287a12d41892349e4e23015a9b371683a3105 (patch) | |
tree | f44d045560e14f464a6600611a838c77aa430935 | |
parent | 28b7ba80e9656a7f0893a41bafa0c17265fe6874 (diff) |
Disable running WHO after joining channel by default
-rw-r--r-- | src/common/cfgfiles.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c index 352c0174..8bcfdd87 100644 --- a/src/common/cfgfiles.c +++ b/src/common/cfgfiles.c @@ -729,7 +729,8 @@ load_config (void) prefs.autoopendccrecvwindow = 1; prefs.autoopendccsendwindow = 1; prefs.autoopendccchatwindow = 1; - prefs.userhost = 1; + /* prevent kicks and bans caused by overwhelming who'ing after reconnects */ + /* prefs.userhost = 1; */ prefs.gui_chanlist_maxusers = 9999; prefs.gui_chanlist_minusers = 5; prefs.gui_url_mod = 4; /* ctrl */ |