mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05: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
@ -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…
Reference in New Issue
Block a user