diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-08-25 00:06:52 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-08-25 00:06:52 +0200 |
commit | 0383943c38ee308805798974bfccbd3327369c6a (patch) | |
tree | 73e72fe7177ada30828780ac7b6e7c3fc6a61f94 /root_commands.c | |
parent | 9829ae028dc1f0d8ab60cb18293234f2d4cc19b8 (diff) |
Added message on successful creation of accounts and fixed "set password"
command.
Diffstat (limited to 'root_commands.c')
-rw-r--r-- | root_commands.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/root_commands.c b/root_commands.c index 13567e8a..3097dc81 100644 --- a/root_commands.c +++ b/root_commands.c @@ -168,6 +168,7 @@ static void cmd_register( irc_t *irc, char **cmd ) break; case STORAGE_OK: + irc_usermsg( irc, "Account successfully created" ); irc->status |= USTATUS_IDENTIFIED; irc_umode_set( irc, "+R", 1 ); break; |