summaryrefslogtreecommitdiff
path: root/modules/protocol/unreal.cpp
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@anope.org>2013-07-08 05:05:13 +0200
committerDukePyrolator <DukePyrolator@anope.org>2013-07-08 05:05:13 +0200
commit2ea594d6779cb2456f91c2cbe24e5242286836b5 (patch)
tree581f532aa692aef2109e5321f8716fe78a30eb00 /modules/protocol/unreal.cpp
parente957c7b2d27d8abb89143ee43675a72a3017226e (diff)
added protocol support for incoming NOTICEs
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r--modules/protocol/unreal.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp
index 856a4aeb4..0f4147554 100644
--- a/modules/protocol/unreal.cpp
+++ b/modules/protocol/unreal.cpp
@@ -1124,6 +1124,7 @@ class ProtoUnreal : public Module
Message::Kick message_kick;
Message::Kill message_kill;
Message::MOTD message_motd;
+ Message::Notice message_notice;
Message::Part message_part;
Message::Ping message_ping;
Message::Privmsg message_privmsg;
@@ -1197,9 +1198,9 @@ class ProtoUnreal : public Module
ProtoUnreal(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL | VENDOR),
ircd_proto(this),
message_away(this), message_error(this), message_invite(this), message_join(this), message_kick(this),
- message_kill(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_version(this),
- message_whois(this),
+ message_kill(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_version(this), message_whois(this),
message_capab(this), message_chghost(this), message_chgident(this), message_chgname(this), message_mode(this, "MODE"),
message_svsmode(this, "SVSMODE"), message_svs2mode(this, "SVS2MODE"), message_netinfo(this), message_nick(this), message_pong(this),