Changeset 39f93f0 for irc.c


Ignore:
Timestamp:
2008-08-31T13:42:33Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
d995c9b
Parents:
0e639f5
Message:

/join can now be used to join chatrooms, join_chat should not be used
anymore. /join should not be used for unnamed groupchats anymore, use
"chat with" instead.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r0e639f5 r39f93f0  
    781781        irc_reply( irc,   3, ":%s", IRCD_INFO );
    782782        irc_reply( irc,   4, "%s %s %s %s", irc->myhost, BITLBEE_VERSION, UMODES UMODES_PRIV, CMODES );
    783         irc_reply( irc,   5, "PREFIX=(ov)@+ CHANTYPES=#& CHANMODES=,,,%s NICKLEN=%d NETWORK=BitlBee CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 :are supported by this server", CMODES, MAX_NICK_LENGTH - 1 );
     783        irc_reply( irc,   5, "PREFIX=(ov)@+ CHANTYPES=%s CHANMODES=,,,%s NICKLEN=%d NETWORK=BitlBee "
     784                             "CASEMAPPING=rfc1459 MAXTARGETS=1 WATCH=128 :are supported by this server",
     785                             CTYPES, CMODES, MAX_NICK_LENGTH - 1 );
    784786        irc_motd( irc );
    785787        irc->umode[0] = '\0';
     
    10221024        user_t *u = NULL;
    10231025       
    1024         if( *nick == '#' || *nick == '&' )
     1026        if( strchr( CTYPES, *nick ) )
    10251027        {
    10261028                if( !( c = irc_chat_by_channel( irc, nick ) ) )
Note: See TracChangeset for help on using the changeset viewer.