diff options
-rw-r--r-- | Changes | 9 | ||||
-rw-r--r-- | src/chanserv.c | 2 | ||||
-rw-r--r-- | src/hybrid.c | 13 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 24 insertions, 6 deletions
@@ -15,8 +15,8 @@ Provided by Anope Dev. <dev@anope.org> - 2004 11/18 A NSAddAccessOnReg to control access list on registration. [ #00] 12/23 F Several compiler errors under make strict. [ #00] 12/21 F Unsetting away would not trigger checking of memos. [#258] -12/21 F Dreamforge compile [ #00] -12/21 F Moved global about del of non-existant session inside debug() if [ #00] +12/21 F Dreamforge compile. [ #00] +12/21 F Moved global about del of non-existant session inside debug() if. [ #00] 12/19 F Fixed LogUser messages where the nickip is 0. [#253] 12/19 F Segfault if USERDB enabled and tables don't exist. [#255] 12/18 F Now only builds the ircd you selected. [ #00] @@ -61,7 +61,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 11/16 F NickTracking could allow usage of forbidden nick in some cases. [ #00] Provided by DrStein <gacevedo@anope.org> - 2004 -12/10 F Extra tab in language files, causing bad answer in !seen [#243] +12/10 F Extra tab in language files, causing bad answer in !seen. [#243] 11/28 F Fixes RSEND oddity. [#237] 11/26 F Memos sent as notification of receipt can't be cancelled. [#192] 11/23 F Moving Services Operators to Services Admins and vice-versa. [#230] @@ -74,9 +74,10 @@ Provided by mitch{Xy} <mitch@bondage.com> - 2004. 12/20 F Removed unclear email text from language files. [ #00] Provided by ThaPrince <jon@vile.com> - 2004. +12/25 A Support for Hybrid TBURST. [#259] 12/21 A Support for Hybrid IRCDs QS (Quit Storm). [#256] -12/22 F Updated the plexus support. [ #00] 12/20 A Added plexus ircd support. [ #00] +12/22 F Updated the plexus support. [ #00] Anope Version 1.7.6 ------------------- diff --git a/src/chanserv.c b/src/chanserv.c index 15c4df05e..831793927 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -741,7 +741,7 @@ void load_cs_dbase(void) ci->levels = scalloc(2 * CA_SIZE, 1); reset_levels(ci); for (j = 0; j < n_levels; j++) { - SAFE(read_int16(&tmp16)); + SAFE(read_int16(&tmp16, f)); if (j < CA_SIZE) ci->levels[j] = (int16) tmp16; } diff --git a/src/hybrid.c b/src/hybrid.c index 4ab654eeb..5ba665b6d 100644 --- a/src/hybrid.c +++ b/src/hybrid.c @@ -589,6 +589,18 @@ int anope_event_topic(char *source, int ac, char **av) return MOD_CONT; } +int anope_event_tburst(char *source, int ac, char **av) +{ + if (ac != 5) + return MOD_CONT; + + av[0] = av[1]; + av[1] = av[3]; + av[3] = av[4]; + do_topic(source, 4, av); + return MOD_CONT; +} + int anope_event_436(char *source, int ac, char **av) { if (ac < 1) @@ -623,6 +635,7 @@ void moduleAddIRCDMsgs(void) { m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("TBURST", anope_event_tburst); addCoreMessage(IRCD,m); m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); diff --git a/version.log b/version.log index 156f6541c..2c1e724c6 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="499" +VERSION_BUILD="500" # $Log$ # +# BUILD : 1.7.6 (500) +# BUGS : 259 +# NOTES : Added support for hybrid TBURST -- merry xmas :) +# # BUILD : 1.7.6 (499) # BUGS : # NOTES : Fixed several compiler warnings with make strict, removed 2 deprecated config vars. |