diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:29:56 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:29:56 +0000 |
commit | 5d695b7bf69eada724742fe7cbdf92b609a0858e (patch) | |
tree | c0cdb47b73c6b1176d7c3d523c60fc7675e4a3d3 /src/protocol/obsolete/plexus3.c | |
parent | c8d4ff56a17d55ad886096c85e03f6ea12734f5d (diff) |
Guest nicks, MODE.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1301 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/obsolete/plexus3.c')
-rw-r--r-- | src/protocol/obsolete/plexus3.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/protocol/obsolete/plexus3.c b/src/protocol/obsolete/plexus3.c index 28d5d7583..095c92189 100644 --- a/src/protocol/obsolete/plexus3.c +++ b/src/protocol/obsolete/plexus3.c @@ -1311,7 +1311,7 @@ plexus_cmd_211 (const char *buf) } void -plexus_cmd_mode (const char *source, const char *dest, const char *buf) +plexus_SendMode (const char *source, const char *dest, const char *buf) { if (!buf) { @@ -1358,7 +1358,7 @@ plexus_cmd_notice_ops (const char *source, const char *dest, const char *buf) void plexus_cmd_bot_chan_mode (const char *nick, const char *chan) { - anope_cmd_mode (nick, chan, "%s %s %s", myIrcd->botchanumode, nick, nick); + anope_SendMode (nick, chan, "%s %s %s", myIrcd->botchanumode, nick, nick); } /* QUIT */ @@ -1511,7 +1511,7 @@ plexus_cmd_svsnick (const char *nick, const char *newnick, time_t when) } void -plexus_cmd_guest_nick (const char *nick, const char *user, const char *host, const char *real, +plexus_SendGuestNick (const char *nick, const char *user, const char *host, const char *real, const char *modes) { send_cmd (ServerName, "NICK %s 1 %ld %s %s %s %s 0 %s :%s", nick, @@ -1747,8 +1747,8 @@ moduleAddAnopeCmds () pmodule_cmd_375 (plexus_cmd_375); pmodule_cmd_376 (plexus_cmd_376); pmodule_cmd_nick (plexus_cmd_nick); - pmodule_cmd_guest_nick (plexus_cmd_guest_nick); - pmodule_cmd_mode (plexus_cmd_mode); + pmodule_SendGuestNick (plexus_cmd_guest_nick); + pmodule_SendMode (plexus_cmd_mode); pmodule_cmd_bot_nick (plexus_cmd_bot_nick); pmodule_cmd_kick (plexus_cmd_kick); pmodule_cmd_notice_ops (plexus_cmd_notice_ops); |