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

Fixed parsing squit (it has a reason)

This commit is contained in:
Adam
2012-10-03 05:17:32 -04:00
parent 7551245f57
commit 69437bb324
+1 -1
View File
@@ -84,7 +84,7 @@ struct CoreIRCDMessageQuit : IRCDMessage
struct CoreIRCDMessageSQuit : IRCDMessage
{
CoreIRCDMessageSQuit(const Anope::string &mname = "SQUIT") : IRCDMessage(mname, 1) { SetFlag(IRCDMESSAGE_REQUIRE_SERVER); }
CoreIRCDMessageSQuit(const Anope::string &mname = "SQUIT") : IRCDMessage(mname, 2) { SetFlag(IRCDMESSAGE_REQUIRE_SERVER); }
bool Run(MessageSource &source, const std::vector<Anope::string> &params) anope_override;
};