Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • query.c

    re67e513 r1e52e1f  
    106106        int count = 0;
    107107       
    108         if( !ic )
    109                 return;
    110        
    111108        q = irc->queries;
    112109        def = query_default( irc );
     
    150147                        imcb_log( q->ic, "Accepted: %s", q->question );
    151148                else
    152                         irc_rootmsg( irc, "Accepted: %s", q->question );
    153                 if( q->yes )
    154                         q->yes( q->data );
     149                        irc_usermsg( irc, "Accepted: %s", q->question );
     150                q->yes( q->data );
    155151        }
    156152        else
     
    159155                        imcb_log( q->ic, "Rejected: %s", q->question );
    160156                else
    161                         irc_rootmsg( irc, "Rejected: %s", q->question );
    162                 if( q->no )
    163                         q->no( q->data );
     157                        irc_usermsg( irc, "Rejected: %s", q->question );
     158                q->no( q->data );
    164159        }
    165160        q->data = NULL;
     
    179174        else
    180175        {
    181                 irc_rootmsg( irc, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question );
     176                irc_usermsg( irc, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question );
    182177        }
    183178}
Note: See TracChangeset for help on using the changeset viewer.