Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • root_commands.c

    r0e788f5 re277e80  
    281281{
    282282        if( ( irc->status & USTATUS_IDENTIFIED ) == 0 )
    283                 irc_rootmsg( irc, "Please create an account first" );
     283                irc_rootmsg( irc, "Please create an account first (see \x02help register\x02)" );
    284284        else if( storage_save( irc, NULL, TRUE ) == STORAGE_OK )
    285285                irc_rootmsg( irc, "Configuration saved" );
     
    702702        if( cmd[3] )
    703703        {
    704                 if( !nick_ok( cmd[3] ) )
     704                if( !nick_ok( irc, cmd[3] ) )
    705705                {
    706706                        irc_rootmsg( irc, "The requested nick `%s' is invalid", cmd[3] );
     
    844844                irc_rootmsg( irc, "Use /nick to change your own nickname" );
    845845        }
    846         else if( !nick_ok( cmd[2] ) )
     846        else if( !nick_ok( irc, cmd[2] ) )
    847847        {
    848848                irc_rootmsg( irc, "Nick `%s' is invalid", cmd[2] );
Note: See TracChangeset for help on using the changeset viewer.