diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | lang/en_us.l | 2 | ||||
-rw-r--r-- | src/protocol/inspircd.c | 10 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 16 insertions, 3 deletions
@@ -37,6 +37,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006 06/18 F Moduledata was cleared before calling AnopeFini. [#523] 06/20 F Make does not recompile everything even on no change anymore. [ #00] 06/20 F Versions in win32.rc are now updated correctly. [#526] +06/21 F Syntax for NickServ SET MSG showed syntax for SET PRIVATE. [ #00] Provided by ThaPrince <jon@vile.com> - 2006 05/19 A Plexus 3 support. [ #00] diff --git a/lang/en_us.l b/lang/en_us.l index 170123e2d..f9acb49fa 100644 --- a/lang/en_us.l +++ b/lang/en_us.l @@ -513,7 +513,7 @@ NICK_SET_HIDE_STATUS_OFF # SET MSG responses NICK_SET_MSG_SYNTAX - SET PRIVATE {ON | OFF} + SET MSG {ON | OFF} NICK_SET_MSG_ON Services will now reply to you with messages. NICK_SET_MSG_OFF diff --git a/src/protocol/inspircd.c b/src/protocol/inspircd.c index d500be642..8ee99f601 100644 --- a/src/protocol/inspircd.c +++ b/src/protocol/inspircd.c @@ -1100,7 +1100,8 @@ int anope_event_ping(char *source, int ac, char **av) { if (ac < 1) return MOD_CONT; - inspircd_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + /* ((ac > 1) ? av[1] : ServerName) */ + inspircd_cmd_pong(ServerName, av[0]); return MOD_CONT; } @@ -1562,6 +1563,12 @@ int inspircd_valid_nick(char *nick) return 1; } +int inspircd_valid_chan(char *chan) +{ + return 1; +} + + void inspircd_cmd_ctcp(char *source, char *dest, char *buf) { char *s; @@ -1651,6 +1658,7 @@ void moduleAddAnopeCmds() pmodule_flood_mode_check(inspircd_flood_mode_check); pmodule_cmd_jupe(inspircd_cmd_jupe); pmodule_valid_nick(inspircd_valid_nick); + pmodule_valid_chan(inspircd_valid_chan); pmodule_cmd_ctcp(inspircd_cmd_ctcp); pmodule_set_umode(inspircd_set_umode); } diff --git a/version.log b/version.log index 9987e2b29..2937867d7 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="14" VERSION_EXTRA="" -VERSION_BUILD="1071" +VERSION_BUILD="1072" # $Log$ # +# BUILD : 1.7.14 (1072) +# BUGS : +# NOTES : Fixed a mistake in en_us.nl and updated inspircd support module +# # BUILD : 1.7.14 (1071) # BUGS : N/A # NOTES : plexus3 now uses the ircd struct when deciding which modes to send for svid_umode3 calls |