diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-18 03:53:31 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-18 03:53:31 +0000 |
commit | 135e0f182720d72d301b7c795c5f41659e6e2b82 (patch) | |
tree | 4d7f94071adc5837830a090fd16754ccd0fde1d1 /init.c | |
parent | 3ee8ec2d2dbaa1f7c3555b3e6aac57c48f640aa7 (diff) |
BUILD : 1.7.3 (202) BUGS : 99 NOTES : Completed user defined modes as per Trystan patch
git-svn-id: svn://svn.anope.org/anope/trunk@202 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@144 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'init.c')
-rw-r--r-- | init.c | 15 |
1 files changed, 2 insertions, 13 deletions
@@ -192,19 +192,8 @@ void introduce_user(const char *user) EnforceQlinedNick(bi->nick, s_BotServ); if (!user || !stricmp(user, bi->nick)) -#if defined(IRC_UNREAL) || defined(IRC_VIAGRA) - NEWNICK(bi->nick, bi->user, bi->host, bi->real, "+qS", - 1); -#elif defined(IRC_ULTIMATE) - NEWNICK(bi->nick, bi->user, bi->host, bi->real, "+pS", - 1); -#elif defined(IRC_ULTIMATE3) || defined(IRC_RAGE2) - NEWNICK(bi->nick, bi->user, bi->host, bi->real, "+S", - 1); -#else - NEWNICK(bi->nick, bi->user, bi->host, bi->real, "+", - 1); -#endif + NEWNICK(bi->nick, bi->user, bi->host, bi->real, + BOTSERV_BOTS_MODE, 1); } } } |