1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 23:16:39 +02:00

Allow assigning service bots via /invite

This commit is contained in:
Adam
2013-04-14 17:39:01 -05:00
parent baabc91ead
commit f08dbced60
14 changed files with 98 additions and 32 deletions
+3 -2
View File
@@ -570,6 +570,7 @@ class ProtongIRCd : public Module
/* Core message handlers */
Message::Capab message_capab;
Message::Error message_error;
Message::Invite message_invite;
Message::Kick message_kick;
Message::Kill message_kill;
Message::MOTD message_motd;
@@ -643,8 +644,8 @@ class ProtongIRCd : public Module
public:
ProtongIRCd(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL | VENDOR),
ircd_proto(this),
message_capab(this), message_error(this), message_kick(this), message_kill(this), message_motd(this),
message_part(this), message_ping(this), message_privmsg(this), message_squery(this, "SQUERY"),
message_capab(this), message_error(this), message_invite(this), message_kick(this), message_kill(this),
message_motd(this), message_part(this), message_ping(this), message_privmsg(this), message_squery(this, "SQUERY"),
message_quit(this), message_squit(this), message_stats(this), message_time(this), message_version(this),
message_005(this), message_376(this), message_chaninfo(this), message_join(this), message_metadata(this),