diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-15 21:12:32 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-01-15 21:12:32 +0100 |
commit | cfa2239db52111831f35d33a8f32ee96c00dedc2 (patch) | |
tree | 480c019a855bf862285ff8234816b457469bd69b /src/plugins/irc/irc-nick.h | |
parent | 6abd989dd7b2be6eb9bb194029079d90a1eaeca5 (diff) | |
download | weechat-cfa2239db52111831f35d33a8f32ee96c00dedc2.zip |
irc: update message with number of nicks when joining a channel
Changed:
- "N voices" to "N voiced"
- "N normals" to "N regular"
Diffstat (limited to 'src/plugins/irc/irc-nick.h')
-rw-r--r-- | src/plugins/irc/irc-nick.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-nick.h b/src/plugins/irc/irc-nick.h index d296c1fed..de647386c 100644 --- a/src/plugins/irc/irc-nick.h +++ b/src/plugins/irc/irc-nick.h @@ -87,8 +87,8 @@ extern struct t_irc_nick *irc_nick_search (struct t_irc_server *server, const char *nickname); extern void irc_nick_count (struct t_irc_server *server, struct t_irc_channel *channel, int *total, - int *count_op, int *count_halfop, int *count_voice, - int *count_normal); + int *count_ops, int *count_halfops, + int *count_voiced, int *count_regular); extern void irc_nick_set_away (struct t_irc_server *server, struct t_irc_channel *channel, struct t_irc_nick *nick, int is_away); |