diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-03-22 18:35:03 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-03-22 18:35:03 +0100 |
commit | aa5ac01a7ed0808a981cabf81b91a3e6a2ee1c9a (patch) | |
tree | 1a5c312682208bef9fe2735fad5f48d0a8f5a1d5 /root_commands.c | |
parent | 9b8efab1327b0263871fd95fc8612a21c7bb2389 (diff) |
Restored buddy counts in blist output for +b mode, it's a nice end-of-list marker.
Diffstat (limited to 'root_commands.c')
-rw-r--r-- | root_commands.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/root_commands.c b/root_commands.c index 978d8768..36eec8c3 100644 --- a/root_commands.c +++ b/root_commands.c @@ -727,8 +727,7 @@ static void cmd_blist( irc_t *irc, char **cmd ) n_offline ++; } - if( strchr( irc->umode, 'b' ) == NULL ) - irc_usermsg( irc, "%d buddies (%d available, %d away, %d offline)", n_online + n_away + n_offline, n_online, n_away, n_offline ); + irc_usermsg( irc, "%d buddies (%d available, %d away, %d offline)", n_online + n_away + n_offline, n_online, n_away, n_offline ); } static void cmd_nick( irc_t *irc, char **cmd ) |