diff options
-rw-r--r-- | root_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/root_commands.c b/root_commands.c index b46b076d..a46e0225 100644 --- a/root_commands.c +++ b/root_commands.c @@ -280,7 +280,7 @@ static void cmd_drop( irc_t *irc, char **cmd ) static void cmd_save( irc_t *irc, char **cmd ) { if( ( irc->status & USTATUS_IDENTIFIED ) == 0 ) - irc_rootmsg( irc, "Please create an account first" ); + irc_rootmsg( irc, "Please create an account first (see \x02help register\x02)" ); else if( storage_save( irc, NULL, TRUE ) == STORAGE_OK ) irc_rootmsg( irc, "Configuration saved" ); else |