diff options
author | Peter Powell <petpow@saberuk.com> | 2017-08-27 21:11:12 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2017-09-11 16:03:06 +0100 |
commit | ccb6c0f243ee8de52677dface0a24878630bb7fd (patch) | |
tree | e5d496a59c8b94dcd7156b0fa9f16da5d6455fe8 /src/inspircd.cpp | |
parent | 51a47e7d757df63370168ab5000d13ca9c349ecd (diff) |
Move operquit out of the core and into core_user.
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index abd63f953..44ba3c2a9 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -226,7 +226,6 @@ InspIRCd::InspIRCd(int argc, char** argv) : * THIS MUST MATCH THE ORDER OF DECLARATION OF THE FUNCTORS, e.g. the methods * themselves within the class. */ - OperQuit("operquit", ExtensionItem::EXT_USER, NULL), GenRandom(&HandleGenRandom), IsChannel(&HandleIsChannel), IsNick(&HandleIsNick), @@ -234,8 +233,6 @@ InspIRCd::InspIRCd(int argc, char** argv) : { ServerInstance = this; - Extensions.Register(&OperQuit); - FailedPortList pl; // Flag variables passed to getopt_long() later int do_version = 0, do_nofork = 0, do_debug = 0, |