diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/messages.c | 2 | ||||
-rw-r--r-- | src/protocol/plexus2.c | 2 | ||||
-rw-r--r-- | src/protocol/plexus3.c | 6 |
3 files changed, 5 insertions, 5 deletions
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 |