diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2012-10-02 04:11:52 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2012-10-02 04:11:52 +0200 |
commit | ffca6a762dc0ad8d0ffb90eab163cf63d809cd68 (patch) | |
tree | da6efac33b9a155edcd4c6fed84113839463b9e1 | |
parent | a434baed9154d90ad0dfd31c71a463fb8300bfd8 (diff) |
fixed a small bug in the inspircd protocol modules
-rw-r--r-- | modules/protocol/inspircd-ts6.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/inspircd-ts6.h b/modules/protocol/inspircd-ts6.h index f0af01cc9..bbe687b07 100644 --- a/modules/protocol/inspircd-ts6.h +++ b/modules/protocol/inspircd-ts6.h @@ -626,7 +626,7 @@ struct IRCDMessageMode : IRCDMessage struct IRCDMessageNick : IRCDMessage { - IRCDMessageNick() : IRCDMessage("NICK", 1) { SetFlag(IRCDMESSAGE_REQUIRE_USER); } + IRCDMessageNick() : IRCDMessage("NICK", 2) { SetFlag(IRCDMESSAGE_REQUIRE_USER); } bool Run(MessageSource &source, const std::vector<Anope::string> ¶ms) anope_override { |