Changeset ea85a0b
- Timestamp:
- 2005-11-16T14:22:22Z (19 years ago)
- Branches:
- master
- Children:
- 685c4ef
- Parents:
- bb556db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
query.c
rbb556db rea85a0b 131 131 { 132 132 q->yes( NULL, q->data ); 133 serv_got_crap( q->gc, " \2Accepted\2: %s", q->question );133 serv_got_crap( q->gc, "Accepted: %s", q->question ); 134 134 } 135 135 else 136 136 { 137 137 q->no( NULL, q->data ); 138 serv_got_crap( q->gc, " \2Rejected\2: %s", q->question );138 serv_got_crap( q->gc, "Rejected: %s", q->question ); 139 139 } 140 140 q->data = NULL; … … 150 150 if( q->gc ) 151 151 { 152 serv_got_crap( q->gc, "New request:" ); 153 serv_got_crap( q->gc, "%s\nYou can use the yes/no commands to accept/reject this request.", q->question ); 152 serv_got_crap( q->gc, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question ); 154 153 } 155 154 else 156 155 { 157 irc_usermsg( irc, "New request:" ); 158 irc_usermsg( irc, "%s\nYou can use the yes/no commands to accept/reject this request.", q->question ); 156 irc_usermsg( irc, "New request: %s\nYou can use the \2yes\2/\2no\2 commands to accept/reject this request.", q->question ); 159 157 } 160 158 }
Note: See TracChangeset
for help on using the changeset viewer.