diff options
author | Adam <Adam@anope.org> | 2013-04-14 17:39:01 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-04-14 17:39:01 -0500 |
commit | f08dbced60d59de28d13efee2e19097e0b42f4c7 (patch) | |
tree | b3aae56d92e788e7ca386258ac81ba8a259a8c48 /modules/protocol/bahamut.cpp | |
parent | baabc91ead367a9461bce20dfa1a0e6d44043358 (diff) |
Allow assigning service bots via /invite
Diffstat (limited to 'modules/protocol/bahamut.cpp')
-rw-r--r-- | modules/protocol/bahamut.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/protocol/bahamut.cpp b/modules/protocol/bahamut.cpp index bebca302b..458602d3b 100644 --- a/modules/protocol/bahamut.cpp +++ b/modules/protocol/bahamut.cpp @@ -482,6 +482,7 @@ class ProtoBahamut : public Module Message::Away message_away; Message::Capab message_capab; Message::Error message_error; + Message::Invite message_invite; Message::Join message_join; Message::Kick message_kick; Message::Kill message_kill; @@ -544,10 +545,10 @@ class ProtoBahamut : public Module public: ProtoBahamut(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_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_away(this), message_capab(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_burst(this), message_mode(this, "MODE"), message_svsmode(this, "SVSMODE"), message_nick(this), message_server(this), message_sjoin(this), message_topic(this) |