summaryrefslogtreecommitdiff
path: root/src/protocol.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-09-03 19:40:03 -0400
committerAdam <Adam@anope.org>2013-09-03 19:40:03 -0400
commit1b42e266426fd9aee439d024d787c7ba4a421c63 (patch)
treeb4c0a6c823108f0b2b3a6d5673200e57956a0abe /src/protocol.cpp
parent46913511677b169f32d55e4fc96a8c236169ddc7 (diff)
Cap mode stacker max line length
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r--src/protocol.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp
index ba44ea708..dc07ac40d 100644
--- a/src/protocol.cpp
+++ b/src/protocol.cpp
@@ -28,6 +28,7 @@ IRCDProto::IRCDProto(Module *creator, const Anope::string &p) : Service(creator,
CanSVSNick = CanSVSJoin = CanSetVHost = CanSetVIdent = CanSNLine = CanSQLine = CanSQLineChannel
= CanSZLine = CanSVSHold = CanSVSO = CanCertFP = RequiresID = false;
MaxModes = 3;
+ MaxLine = 512;
if (IRCD == NULL)
IRCD = this;