mirror of
https://github.com/irssi/irssi.git
synced 2026-08-15 14:42:08 +02:00
use extended-join capability
This commit is contained in:
parent
1c99bf78c7
commit
25270e0465
8 changed files with 25 additions and 9 deletions
|
|
@ -349,14 +349,15 @@ static void sig_message_own_private(SERVER_REC *server, const char *msg,
|
|||
}
|
||||
|
||||
static void sig_message_join(SERVER_REC *server, const char *channel,
|
||||
const char *nick, const char *address)
|
||||
const char *nick, const char *address,
|
||||
const char *account, const char *realname)
|
||||
{
|
||||
int level = MSGLEVEL_JOINS;
|
||||
|
||||
ignore_check_plus(server, nick, address, channel, NULL, &level, FALSE);
|
||||
|
||||
printformat(server, channel, level,
|
||||
TXT_JOIN, nick, address, channel);
|
||||
TXT_JOIN, nick, address, channel, account, realname);
|
||||
}
|
||||
|
||||
static void sig_message_part(SERVER_REC *server, const char *channel,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue