summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordane 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
committerdane 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
commit135e0f182720d72d301b7c795c5f41659e6e2b82 (patch)
tree4d7f94071adc5837830a090fd16754ccd0fde1d1
parent3ee8ec2d2dbaa1f7c3555b3e6aac57c48f640aa7 (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--Changes2
-rw-r--r--botserv.c10
-rw-r--r--init.c15
-rw-r--r--version.log6
4 files changed, 11 insertions, 22 deletions
diff --git a/Changes b/Changes
index b9380e2c5..27b582da0 100644
--- a/Changes
+++ b/Changes
@@ -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
diff --git a/botserv.c b/botserv.c
index 128fdccc1..1d43332c7 100644
--- a/botserv.c
+++ b/botserv.c
@@ -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);
}
diff --git a/init.c b/init.c
index 6fbd8a184..8af2ecd8f 100644
--- a/init.c
+++ b/init.c
@@ -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 :)