Changeset 911f2eb for root_commands.c


Ignore:
Timestamp:
2006-07-02T23:20:27Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
5b52a48
Parents:
96863f6
Message:

Added display_name setting for MSN connections. (Should replace the nick
command later.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • root_commands.c

    r96863f6 r911f2eb  
    387387                        if( a->gc && s && s->flags & ACC_SET_OFFLINE_ONLY )
    388388                        {
    389                                 irc_usermsg( irc, "This setting can only be changed when the account is off-line" );
     389                                irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "off" );
     390                                return;
     391                        }
     392                        else if( !a->gc && s && s->flags & ACC_SET_ONLINE_ONLY )
     393                        {
     394                                irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "on" );
    390395                                return;
    391396                        }
Note: See TracChangeset for help on using the changeset viewer.