Changeset f8de26f
- Timestamp:
- 2006-04-03T21:34:45Z (19 years ago)
- Branches:
- master
- Children:
- 11bcee9, 36fa9bd
- Parents:
- e6d6047
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
root_commands.c
re6d6047 rf8de26f 350 350 { 351 351 account_t *a; 352 int add_for_real = 1; 353 354 if( g_strcasecmp( cmd[1], "-tmp" ) == 0 ) 355 { 356 add_for_real = 0; 357 cmd ++; /* So evil... :-D */ 358 } 352 359 353 360 if( !( a = account_get( irc, cmd[1] ) ) ) … … 379 386 } 380 387 } 381 a->gc->prpl->add_buddy( a->gc, cmd[2] ); 388 389 /* By making this optional, you can talk to people without having to 390 add them to your *real* (server-side) contact list. */ 391 if( add_for_real ) 392 a->gc->prpl->add_buddy( a->gc, cmd[2] ); 393 382 394 add_buddy( a->gc, NULL, cmd[2], cmd[2] ); 383 395
Note: See TracChangeset
for help on using the changeset viewer.