diff options
author | Timo Sirainen <cras@irssi.org> | 2001-01-04 17:28:26 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-01-04 17:28:26 +0000 |
commit | d844880515cca4f0f3984b3d9de71c0b168b647b (patch) | |
tree | 08919043ca016131fe1e844b3b614df19d61018c /src/fe-common/irc/module-formats.c | |
parent | f3f80c14991779433c9a1eb13554d846a33205c6 (diff) | |
download | irssi-d844880515cca4f0f3984b3d9de71c0b168b647b.zip |
/UNBAN <ref#> works. /BAN list shows reference numbers.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1062 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/module-formats.c')
-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 e5fd8c53..cc55f231 100644 --- a/src/fe-common/irc/module-formats.c +++ b/src/fe-common/irc/module-formats.c @@ -72,8 +72,8 @@ FORMAT_REC fecommon_irc_formats[] = { { "channel_mode", "mode/{channelhilight $0} {mode $1}", 2, { 0, 0 } }, { "bantype", "Ban type changed to {channel $0}", 1, { 0 } }, { "no_bans", "No bans in channel {channel $0}", 1, { 0 } }, - { "banlist", "{channel $0}: ban {ban $1}", 2, { 0, 0 } }, - { "banlist_long", "{channel $0}: ban {ban $1} {comment by {nick $2}, $3 secs ago}", 4, { 0, 0, 0, 1 } }, + { "banlist", "$0 - {channel $1}: ban {ban $2}", 3, { 1, 0, 0 } }, + { "banlist_long", "$0 - {channel $1}: ban {ban $2} {comment by {nick $3}, $4 secs ago}", 5, { 1, 0, 0, 0, 1 } }, { "ebanlist", "{channel $0}: ban exception {ban $1}", 2, { 0, 0 } }, { "ebanlist_long", "{channel $0}: ban exception {ban $1} {comment by {nick $2}, $3 secs ago}", 4, { 0, 0, 0, 1 } }, { "invitelist", "{channel $0}: invite {ban $1}", 2, { 0, 0 } }, |