summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-10-25 21:31:58 -0400
committerAdam <Adam@anope.org>2012-10-25 21:31:58 -0400
commit8f33933dd8290c8ae410dca683c2e4a1c7ffda41 (patch)
treeb4760b841ab2a710b902cc3c31602ee13d82ef99 /src
parente5efe42ecbb1b84837af5f76f09b7c8ab9d4248d (diff)
Default xlines to be set by OperServ
Diffstat (limited to 'src')
-rw-r--r--src/operserv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operserv.cpp b/src/operserv.cpp
index b339a697f..f1c2edeea 100644
--- a/src/operserv.cpp
+++ b/src/operserv.cpp
@@ -45,7 +45,7 @@ void XLine::InitRegex()
}
}
-XLine::XLine(const Anope::string &mask, const Anope::string &reason, const Anope::string &uid) : Serializable("XLine"), Mask(mask), Created(0), Expires(0), Reason(reason), UID(uid)
+XLine::XLine(const Anope::string &mask, const Anope::string &reason, const Anope::string &uid) : Serializable("XLine"), Mask(mask), By(Config->OperServ), Created(0), Expires(0), Reason(reason), UID(uid)
{
regex = NULL;
manager = NULL;