Changeset bbc69f7
- Timestamp:
- 2012-12-23T23:36:56Z (12 years ago)
- Branches:
- master
- Children:
- 3f661849
- Parents:
- c1bc24a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_commands.c
rc1bc24a rbbc69f7 382 382 static void irc_cmd_notice( irc_t *irc, char **cmd ) 383 383 { 384 irc_user_t *iu; 385 384 386 if( !cmd[2] ) 385 387 { … … 392 394 if( nick_cmp( cmd[1], irc->user->nick ) == 0 ) 393 395 irc_send_msg( irc->user, "NOTICE", irc->user->nick, cmd[2], NULL ); 396 else if( ( iu = irc_user_by_name( irc, cmd[1] ) ) ) 397 iu->f->privmsg( iu, cmd[2] ); 394 398 } 395 399
Note: See TracChangeset
for help on using the changeset viewer.