1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 08:03:12 +02:00

added support for the ngircd SQUERY command

This commit is contained in:
DukePyrolator
2012-11-10 18:29:35 +01:00
parent 8f36f65f39
commit 504232b388
+3 -2
View File
@@ -597,7 +597,7 @@ class ProtongIRCd : public Module
CoreIRCDMessageMOTD core_message_motd;
CoreIRCDMessagePart core_message_part;
CoreIRCDMessagePing core_message_ping;
CoreIRCDMessagePrivmsg core_message_privmsg;
CoreIRCDMessagePrivmsg core_message_privmsg, core_message_squery;
CoreIRCDMessageQuit core_message_quit;
CoreIRCDMessageSQuit core_message_squit;
CoreIRCDMessageStats core_message_stats;
@@ -662,7 +662,8 @@ class ProtongIRCd : public Module
}
public:
ProtongIRCd(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL)
ProtongIRCd(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL),
core_message_squery("SQUERY")
{
this->SetAuthor("Anope");