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/ratbox.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/ratbox.c')
-rw-r--r-- | src/protocol/ratbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index 652bcf6c6..b8c468734 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -997,7 +997,7 @@ void RatboxProto::cmd_numeric(const char *source, int numeric, const char *dest, send_cmd(UseTS6 ? TS6SID : source, "%03d %s %s", numeric, dest, buf); } -void RatboxProto::cmd_mode(const char *source, const char *dest, const char *buf) +void RatboxProto::SendMode(const char *source, const char *dest, const char *buf) { if (!buf) return; if (source) { @@ -1045,7 +1045,7 @@ void RatboxProto::cmd_bot_chan_mode(const char *nick, const char *chan) Uid *u = find_uid(nick); ratbox_cmd_tmode(nick, chan, "%s %s", ircd->botchanumode, u ? u->uid : nick); } - else anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, nick); + else anope_SendMode(nick, chan, "%s %s", ircd->botchanumode, nick); } /* QUIT */ |