diff options
Diffstat (limited to 'src/unreal31.c')
-rw-r--r-- | src/unreal31.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unreal31.c b/src/unreal31.c index f5af99d98..d948c09a4 100644 --- a/src/unreal31.c +++ b/src/unreal31.c @@ -75,8 +75,8 @@ IRCDVar ircd[] = { 1, /* svshold */ 1, /* time stamp on mode */ 0, /* NICKIP */ - 1, /* UMODE */ 1, /* O:LINE */ + 1, /* UMODE */ 1, /* VHOST ON NICK */ 1, /* Change RealName */ CHAN_HELP_UNREAL, /* ChanServ extra */ @@ -400,7 +400,7 @@ void anope_set_umode(User * user, int ac, char **av) break; case 'r': if (add && !nick_identified(user)) { - send_cmd(ServerName, "SVSMODE %s -r", user->nick); + common_svsmode(user, "-r", NULL); user->mode &= ~UMODE_r; } break; |