summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--include/ultimate3.h10
-rw-r--r--src/ultimate3.c2
-rw-r--r--version.log6
4 files changed, 12 insertions, 7 deletions
diff --git a/Changes b/Changes
index 709fada9a..189e0057d 100644
--- a/Changes
+++ b/Changes
@@ -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