mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
In netsplit quit messages, display @ in front of operators' nicks.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@340 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
47fd84c5bc
commit
22b12d85ee
1 changed files with 3 additions and 1 deletions
|
|
@ -102,8 +102,10 @@ static void get_server_splits(void *key, NETSPLIT_REC *split, TEMP_SPLIT_REC *re
|
|||
|
||||
chanrec->nick_count++;
|
||||
if (netsplit_max_nicks <= 0 ||
|
||||
chanrec->nick_count < netsplit_max_nicks)
|
||||
chanrec->nick_count < netsplit_max_nicks) {
|
||||
if (splitchan->nick.op) g_string_append_c(chanrec->nicks, '@');
|
||||
g_string_sprintfa(chanrec->nicks, "%s ", split->nick);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue