Changeset 911f2eb for root_commands.c
- Timestamp:
- 2006-07-02T23:20:27Z (19 years ago)
- Branches:
- master
- Children:
- 5b52a48
- Parents:
- 96863f6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
root_commands.c
r96863f6 r911f2eb 387 387 if( a->gc && s && s->flags & ACC_SET_OFFLINE_ONLY ) 388 388 { 389 irc_usermsg( irc, "This setting can only be changed when the account is off-line" ); 389 irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "off" ); 390 return; 391 } 392 else if( !a->gc && s && s->flags & ACC_SET_ONLINE_ONLY ) 393 { 394 irc_usermsg( irc, "This setting can only be changed when the account is %s-line", "on" ); 390 395 return; 391 396 }
Note: See TracChangeset
for help on using the changeset viewer.