diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/messages.c | 2 | ||||
-rw-r--r-- | src/protocol/plexus2.c | 2 | ||||
-rw-r--r-- | src/protocol/plexus3.c | 6 | ||||
-rw-r--r-- | version.log | 6 |
5 files changed, 11 insertions, 6 deletions
@@ -65,6 +65,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006 Provided by ThaPrince <jon@vile.com> - 2006 05/19 A Plexus 3 support. [ #00] +08/07 F Plexus 2/3 updates, registered nick format. [ #00] 06/25 F root/admin/oper mode now honours secure. [ #00] Provided by Trystan <trystan@nomadirc.net> - 2006 diff --git a/src/messages.c b/src/messages.c index 8353987c6..9c678e5df 100644 --- a/src/messages.c +++ b/src/messages.c @@ -354,7 +354,7 @@ int m_whois(char *source, char *who) /* Bots are handled separately */ anope_cmd_311("%s %s %s %s * :%s", source, bi->nick, bi->user, bi->host, bi->real); - anope_cmd_307("%s :%s is a registered nick", source, bi->nick); + anope_cmd_307("%s %s :is a registered nick", source, bi->nick); anope_cmd_312("%s %s %s :%s", source, bi->nick, ServerName, ServerDesc); anope_cmd_317("%s %s %ld %ld :seconds idle, signon time", diff --git a/src/protocol/plexus2.c b/src/protocol/plexus2.c index ca867a13b..16f62729e 100644 --- a/src/protocol/plexus2.c +++ b/src/protocol/plexus2.c @@ -73,8 +73,8 @@ IRCDVar myIrcd[] = { 0, /* svshold */ 1, /* time stamp on mode */ 0, /* NICKIP */ - 0, /* UMODE */ 0, /* O:LINE */ + 1, /* UMODE */ 1, /* VHOST ON NICK */ 0, /* Change RealName */ CMODE_p, /* No Knock */ diff --git a/src/protocol/plexus3.c b/src/protocol/plexus3.c index af666a2bd..8a51b5221 100644 --- a/src/protocol/plexus3.c +++ b/src/protocol/plexus3.c @@ -73,8 +73,8 @@ IRCDVar myIrcd[] = { 1, /* svshold */ 1, /* time stamp on mode */ 0, /* NICKIP */ - 1, /* UMODE */ 0, /* O:LINE */ + 1, /* UMODE */ 1, /* VHOST ON NICK */ 0, /* Change RealName */ CMODE_p, /* No Knock */ @@ -1614,13 +1614,13 @@ anope_event_pass (char *source, int ac, char **av) void plexus_cmd_svsjoin (char *source, char *nick, char *chan) { - /* Not Supported by this IRCD */ + send_cmd(ServerName, "ENCAP * SVSJOIN %s %s", nick, chan); } void plexus_cmd_svspart (char *source, char *nick, char *chan) { - /* Not Supported by this IRCD */ + send_cmd(ServerName, "ENCAP * SVSPART %s %s", nick, chan); } void diff --git a/version.log b/version.log index 5fd5db19e..756cc10b7 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="14" VERSION_EXTRA="" -VERSION_BUILD="1125" +VERSION_BUILD="1126" # $Log$ # +# BUILD : 1.7.14 (1126) +# BUGS : N/A +# NOTES : Applied ThaPrinces plexus support patch +# # BUILD : 1.7.14 (1125) # BUGS : 572 # NOTES : Increasd langauge buffer size to avoid issues 256 wasnt big enough. |