summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2016-12-05 21:36:02 -0500
committerAdam <Adam@anope.org>2016-12-05 21:36:02 -0500
commit1ff4719ea70cfead41bd91d7b78cfdcb5b84b8cc (patch)
treea0b6255448f98a6760a5b32f07a200dc82790555 /include
parent76771aa05f7168ca02c217d3c6de36e84381eb5d (diff)
protocol/inspircd20: SERVER will be sourceless before there is an uplink, so remove require_server flag
Diffstat (limited to 'include')
-rw-r--r--include/modules/protocol/inspircd20.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/protocol/inspircd20.h b/include/modules/protocol/inspircd20.h
index d65b174f9..9489353d0 100644
--- a/include/modules/protocol/inspircd20.h
+++ b/include/modules/protocol/inspircd20.h
@@ -179,7 +179,7 @@ class Save : public IRCDMessage
class ServerMessage : public IRCDMessage
{
public:
- ServerMessage(Module *creator) : IRCDMessage(creator, "SERVER", 5) { SetFlag(IRCDMESSAGE_REQUIRE_SERVER); }
+ ServerMessage(Module *creator) : IRCDMessage(creator, "SERVER", 5) { }
void Run(MessageSource &source, const std::vector<Anope::string> &params) override;
};