From aa88e500329f2d9bbdb4915c6d46e7078353a879 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Thu, 7 Jun 2012 23:40:59 +0100 Subject: Make error message on using save without registering/identifying a little more helpful. --- root_commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'root_commands.c') 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 -- cgit v1.2.3