diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-03 06:07:44 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-03 06:07:44 +0000 |
commit | 1aaeba38f4e5f3169ad1f17bbf28ceaae0af9f8a (patch) | |
tree | 22c3896351bc7634005a52958a5c993b1afa3c75 /src/ultimate2.c | |
parent | f18d506cad80b9ed28f02ee33f35332320f3ea04 (diff) |
BUILD : 1.7.6 (469) BUGS : N/A NOTES : 1. ultimate3 setting the wrong channel mode on botserv bots 2. helpserv.c is doxygen ready, did some code clean up 3. Services Clients (+S) now override channel modes (yeah no more deopping NeoStats), this only works on ircds where there is a clear services mode (Unreal, Viagra, Ultimeate2/3) 4. send.c is doxygen ready, did some code clean up 5. commands.c id doxygen ready, did some code clean up
git-svn-id: svn://svn.anope.org/anope/trunk@469 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@323 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/ultimate2.c')
-rw-r--r-- | src/ultimate2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ultimate2.c b/src/ultimate2.c index 14f38066a..a6a683359 100644 --- a/src/ultimate2.c +++ b/src/ultimate2.c @@ -100,6 +100,8 @@ IRCDVar ircd[] = { 0, /* +I support */ 0, /* SJOIN ban char */ 0, /* SJOIN except char */ + UMODE_S, /* Services Client mode */ + 0, /* not p10 */ } , {NULL} @@ -194,22 +196,20 @@ 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); if (is_services_oper(user)) { common_svsmode(user, "+a", NULL); user->mode |= UMODE_a; } - if (is_services_admin(user)) { common_svsmode(user, "+P", NULL); user->mode |= UMODE_P; } - if (is_services_root(user)) { common_svsmode(user, "+R", NULL); user->mode |= UMODE_R; |