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 | |
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
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | botserv.c | 10 | ||||
-rw-r--r-- | init.c | 15 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 11 insertions, 22 deletions
@@ -2,7 +2,6 @@ Anope Version S V N ------------------- Provided by Anope Dev. <dev@anope.org> - 2004 06/16 A More verbose error messages for services.conf checking. [ #00] -06/10 A User customizable pseudo-client modes. [ #99] 06/10 A Improved handling of /NS INFO for pseudo-clients. [ #98] 06/07 A Added register script in /bin/ for users to register anope. [ #00] 05/27 A Better /OS MODLIST output to include version information. [ #74] @@ -35,6 +34,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 05/21 F Reserved nicks (Q-lined) will be KILLed if taken on induction. [ #50] Provided by Trystan <trystan@nomadirc.net> - 2004 +06/10 A User customizable pseudo-client modes. [ #99] 06/17 F GlobalOnCycleMessage checked at startup [ #91] Anope Version 1.7.3 @@ -1525,13 +1525,9 @@ static int do_bot(User * u) send_cmd(oldnick, "NICK %s", bi->nick); else { send_cmd(oldnick, "QUIT :Quit: Be right back"); -#if defined(IRC_UNREAL) - 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); -#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); bot_rejoin_all(bi); } @@ -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); } } } diff --git a/version.log b/version.log index 45cd9f896..03263caea 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="3" -VERSION_BUILD="201" +VERSION_BUILD="202" # $Log$ # +# BUILD : 1.7.3 (202) +# BUGS : 99 +# NOTES : Completed user defined modes as per Trystan patch +# # BUILD : 1.7.3 (201) # BUGS : 91 # NOTES : Fix provided by trystan - ty :) |