diff options
author | Timo Sirainen <cras@irssi.org> | 2002-01-12 11:11:09 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-01-12 11:11:09 +0000 |
commit | 66e8aa2c74fd98e8c593cbb97c21cace27d0c4b2 (patch) | |
tree | 4fd2333c91828fd2a67876cc7b5d18fafdb4267c /src | |
parent | e35c8e4d083311e3f3feb353f318ef6f5b879f8b (diff) | |
download | irssi-66e8aa2c74fd98e8c593cbb97c21cace27d0c4b2.zip |
Using "server1 <-> server2, server3" format for netsplit messages now.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2310 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-common/irc/module-formats.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/irc/module-formats.c b/src/fe-common/irc/module-formats.c index 96d6628e..9e6ba00d 100644 --- a/src/fe-common/irc/module-formats.c +++ b/src/fe-common/irc/module-formats.c @@ -27,8 +27,8 @@ FORMAT_REC fecommon_irc_formats[] = { /* ---- */ { NULL, "Server", 0 }, - { "netsplit", "{netsplit Netsplit} {server $0} {server $1} quits: $2", 3, { 0, 0, 0 } }, - { "netsplit_more", "{netsplit Netsplit} {server $0} {server $1} quits: $2 (+$3 more, use /NETSPLIT to show all of them)", 4, { 0, 0, 0, 1 } }, + { "netsplit", "{netsplit Netsplit} {server $0} <-> {server $1} quits: $2", 3, { 0, 0, 0 } }, + { "netsplit_more", "{netsplit Netsplit} {server $0} <-> {server $1} quits: $2 (+$3 more, use /NETSPLIT to show all of them)", 4, { 0, 0, 0, 1 } }, { "netsplit_join", "{netjoin Netsplit} over, joins: $0", 1, { 0 } }, { "netsplit_join_more", "{netjoin Netsplit} over, joins: $0 (+$1 more)", 2, { 0, 1 } }, { "no_netsplits", "There are no net splits", 0 }, |