diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/protocol/unreal32.c | 16 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 14 insertions, 9 deletions
@@ -15,6 +15,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006 09/17 F Small mistakes in Dutch language file. [ #00] 09/23 F Restarting under Windows now works correctly [#589] 09/25 F Make now works with multiple threads. [ #00] +09/28 F We will now process UnrealIRCd's SVS(2)MODE messages. [#603] Provided by Trystan <trystan@nomadirc.net> - 2006 08/20 F Fixed several compiler warnings. [#586] diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 8ae76a906..704487a6d 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -1915,6 +1915,14 @@ void moduleAddIRCDMsgs(void) { if (UseTokens) { m = createMessage(")", anope_event_topic); addCoreMessage(IRCD,m); } + m = createMessage("SVSMODE", anope_event_mode); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("n", anope_event_mode); addCoreMessage(IRCD,m); + } + m = createMessage("SVS2MODE", anope_event_mode); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("v", anope_event_mode); addCoreMessage(IRCD,m); + } m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); if (UseTokens) { m = createMessage("%", anope_event_null); addCoreMessage(IRCD,m); @@ -1955,14 +1963,6 @@ void moduleAddIRCDMsgs(void) { if (UseTokens) { m = createMessage("h", anope_event_null); addCoreMessage(IRCD,m); } - m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); - if (UseTokens) { - m = createMessage("n", anope_event_null); addCoreMessage(IRCD,m); - } - m = createMessage("SVS2MODE", anope_event_null); addCoreMessage(IRCD,m); - if (UseTokens) { - m = createMessage("v", anope_event_null); addCoreMessage(IRCD,m); - } m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); if (UseTokens) { m = createMessage("e", anope_event_null); addCoreMessage(IRCD,m); diff --git a/version.log b/version.log index bfc3783bd..c6c015336 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="15" VERSION_EXTRA="-svn" -VERSION_BUILD="1158" +VERSION_BUILD="1159" # $Log$ # +# BUILD : 1.7.15 (1159) +# BUGS : 603 +# NOTES : we will now process UnrealIRCd's SVS(2)MODE messages +# # BUILD : 1.7.15 (1158) # BUGS : # NOTES : Fixed the Makefile to let make work with multiple threads (tested with 3) |