diff options
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) |