diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2013-07-08 05:05:13 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2013-07-08 05:05:13 +0200 |
commit | 2ea594d6779cb2456f91c2cbe24e5242286836b5 (patch) | |
tree | 581f532aa692aef2109e5321f8716fe78a30eb00 /modules/protocol/ratbox.cpp | |
parent | e957c7b2d27d8abb89143ee43675a72a3017226e (diff) |
added protocol support for incoming NOTICEs
Diffstat (limited to 'modules/protocol/ratbox.cpp')
-rw-r--r-- | modules/protocol/ratbox.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/protocol/ratbox.cpp b/modules/protocol/ratbox.cpp index 7bae048d6..570448db2 100644 --- a/modules/protocol/ratbox.cpp +++ b/modules/protocol/ratbox.cpp @@ -192,6 +192,7 @@ class ProtoRatbox : public Module Message::Kill message_kill; Message::Mode message_mode; Message::MOTD message_motd; + Message::Notice message_notice; Message::Part message_part; Message::Ping message_ping; Message::Privmsg message_privmsg; @@ -236,9 +237,9 @@ class ProtoRatbox : public Module ProtoRatbox(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL | VENDOR), ircd_proto(this), message_away(this), message_capab(this), message_error(this), message_invite(this), message_kick(this), - message_kill(this), message_mode(this), message_motd(this), message_part(this), message_ping(this), - message_privmsg(this), message_quit(this), message_squit(this), message_stats(this), message_time(this), - message_topic(this), message_version(this), message_whois(this), + message_kill(this), message_mode(this), message_motd(this), message_notice(this), message_part(this), + message_ping(this), message_privmsg(this), message_quit(this), message_squit(this), message_stats(this), + message_time(this), message_topic(this), message_version(this), message_whois(this), message_bmask("IRCDMessage", "ratbox/bmask", "hybrid/bmask"), message_join("IRCDMessage", "ratbox/join", "hybrid/join"), message_nick("IRCDMessage", "ratbox/nick", "hybrid/nick"), message_pong("IRCDMessage", "ratbox/pong", "hybrid/pong"), |