summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-06-09 17:18:21 -0400
committerAdam <Adam@anope.org>2014-06-09 17:18:21 -0400
commitab27b792b051f61336c2243bef2750f4abb53cfc (patch)
tree6f35c4b59e0cda709bcbb2968512129f45f5749e
parentf1c3bdd55e2ae9b060d3c002f135b16a0a51a3d9 (diff)
Track SVSKILL on unreal
-rw-r--r--modules/protocol/unreal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp
index 304da6788..4aa340f08 100644
--- a/modules/protocol/unreal.cpp
+++ b/modules/protocol/unreal.cpp
@@ -1170,7 +1170,7 @@ class ProtoUnreal : public Module
Message::Invite message_invite;
Message::Join message_join;
Message::Kick message_kick;
- Message::Kill message_kill;
+ Message::Kill message_kill, message_svskill;
Message::MOTD message_motd;
Message::Notice message_notice;
Message::Part message_part;
@@ -1246,7 +1246,7 @@ 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_notice(this), message_part(this), message_ping(this),
+ message_kill(this), message_svskill(this, "SVSKILL"), 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),