diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2004-02-29 21:16:22 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2004-02-29 21:16:22 +0000 |
commit | 0bd38072f2217b9baa3620b0cee0bc0e79bd225d (patch) | |
tree | d76c06d751d0e1f2ee96b7ccdadf63d18f7dfbaa /src/irc/irc-commands.c | |
parent | 81da0f41d7053f0358784b560b302b86e464b290 (diff) | |
download | weechat-0bd38072f2217b9baa3620b0cee0bc0e79bd225d.zip |
Display channel modes when joining channel that already exists (i.e. with modes already set)
Diffstat (limited to 'src/irc/irc-commands.c')
-rw-r--r-- | src/irc/irc-commands.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/irc/irc-commands.c b/src/irc/irc-commands.c index 7acb23d70..8889718e2 100644 --- a/src/irc/irc-commands.c +++ b/src/irc/irc-commands.c @@ -286,6 +286,8 @@ t_irc_command irc_commands[] = { "321", N_("/list start"), "", "", 0, 0, 1, NULL, NULL, irc_cmd_recv_321 }, { "322", N_("channel (for /list)"), "", "", 0, 0, 1, NULL, NULL, irc_cmd_recv_322 }, { "323", N_("/list end"), "", "", 0, 0, 1, NULL, NULL, irc_cmd_recv_323 }, + { "324", N_("channel mode"), "", "", 0, 0, 1, NULL, NULL, irc_cmd_recv_324 }, + { "329", "???", "", "", 0, 0, 1, NULL, NULL, irc_cmd_recv_329 }, { "331", N_("no topic for channel"), "", "", 0, 0, 1, NULL, NULL, irc_cmd_recv_331 }, { "332", N_("topic of channel"), N_("channel :topic"), |