diff options
author | Adam <Adam@anope.org> | 2012-10-25 21:31:58 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-25 21:31:58 -0400 |
commit | 8f33933dd8290c8ae410dca683c2e4a1c7ffda41 (patch) | |
tree | b4760b841ab2a710b902cc3c31602ee13d82ef99 /src | |
parent | e5efe42ecbb1b84837af5f76f09b7c8ab9d4248d (diff) |
Default xlines to be set by OperServ
Diffstat (limited to 'src')
-rw-r--r-- | src/operserv.cpp | 2 |
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; |