diff options
Diffstat (limited to 'src/unreal31.c')
-rw-r--r-- | src/unreal31.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/unreal31.c b/src/unreal31.c index 95750926b..2911f397d 100644 --- a/src/unreal31.c +++ b/src/unreal31.c @@ -103,6 +103,8 @@ IRCDVar ircd[] = { 0, /* +I support */ 0, /* SJOIN ban char */ 0, /* SJOIN except char */ + UMODE_S, /* Services Client mode */ + 0, /* not p10 */ }, {NULL} }; @@ -394,11 +396,11 @@ void anope_set_umode(User * user, int ac, char **av) case 'o': if (add) { opcnt++; - - if (WallOper) + if (WallOper) { anope_cmd_global(s_OperServ, "\2%s\2 is now an IRC operator.", user->nick); + } display_news(user, NEWS_OPER); } else { opcnt--; |