diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-01-01 20:15:33 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-01-01 20:15:33 +0000 |
commit | 8114b5be040dfdd07a53abc96e9fddc04c564687 (patch) | |
tree | 4c3f212dc488103cc92de75191e6aceb64146e6e | |
parent | 59122c8ca203f81d79ea26d09399f071a2fd77ad (diff) |
BUILD : 1.7.6 (519) BUGS : N/A NOTES : Ultimate3 bug fixes, they have NICKIP, and some channel modes were defined the same causing problems
git-svn-id: svn://svn.anope.org/anope/trunk@519 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@373 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | include/ultimate3.h | 10 | ||||
-rw-r--r-- | src/ultimate3.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 12 insertions, 7 deletions
@@ -16,6 +16,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00] 11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00] 11/18 A NSAddAccessOnReg to control access list on registration. [ #00] +01/01 F Ultimate3 channel modes, which had been defined incorrectly. [ #00] 12/31 F Fixed integer overflow error with CS ACCESS/LEVELS. [#262] 12/30 F Fixed moduleAddData using an old moduleData as list head. [#261] 12/30 F List handling of moduleData was bad on deletion. [#261] diff --git a/include/ultimate3.h b/include/ultimate3.h index 0aafffa87..cd1e51238 100644 --- a/include/ultimate3.h +++ b/include/ultimate3.h @@ -50,16 +50,16 @@ #define CMODE_t 0x00000020 #define CMODE_k 0x00000040 /* These two used only by ChanServ */ #define CMODE_l 0x00000080 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ +#define CMODE_c 0x00000400 /* Colors can't be used */ #define CMODE_A 0x00000800 #define CMODE_N 0x00001000 #define CMODE_S 0x00002000 #define CMODE_K 0x00004000 -#define CMODE_c 0x00000400 /* Colors can't be used */ -#define CMODE_M 0x00000800 /* Non-regged nicks can't send messages */ -#define CMODE_q 0x00001000 /* No Quit Reason */ #define CMODE_O 0x00008000 /* Only opers can join */ -#define CMODE_R 0x00000100 /* Only identified users can join */ -#define CMODE_r 0x00000200 /* Set for all registered channels */ +#define CMODE_q 0x00010000 /* No Quit Reason */ +#define CMODE_M 0x00020000 /* Non-regged nicks can't send messages */ #define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r diff --git a/src/ultimate3.c b/src/ultimate3.c index 89f8345eb..62f5bbdd2 100644 --- a/src/ultimate3.c +++ b/src/ultimate3.c @@ -79,7 +79,7 @@ IRCDVar ircd[] = { 0, /* vidents */ 0, /* svshold */ 1, /* time stamp on mode */ - 0, /* NICKIP */ + 1, /* NICKIP */ 0, /* O:LINE */ 1, /* UMODE */ 1, /* VHOST ON NICK */ diff --git a/version.log b/version.log index af22babdb..398cc89d2 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="518" +VERSION_BUILD="519" # $Log$ # +# BUILD : 1.7.6 (519) +# BUGS : N/A +# NOTES : Ultimate3 bug fixes, they have NICKIP, and some channel modes were defined the same causing problems +# # BUILD : 1.7.6 (518) # BUGS : 262 # NOTES : CS ACCESS was also affected by the overflow |