diff options
| author | 2019-02-07 12:16:33 +0000 | |
|---|---|---|
| committer | 2019-02-07 12:16:33 +0000 | |
| commit | 641b2d07ab6868a9fa6726c1bc36cde80005e155 (patch) | |
| tree | 00f6f16cef0464477d4a890b3c21793557c2c537 /src/inspircd.cpp | |
| parent | ModeParser: remove fakederef. (diff) | |
| download | inspircd++-641b2d07ab6868a9fa6726c1bc36cde80005e155.tar.gz inspircd++-641b2d07ab6868a9fa6726c1bc36cde80005e155.tar.bz2 inspircd++-641b2d07ab6868a9fa6726c1bc36cde80005e155.zip | |
ModuleManager: remove fakederef.
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index d94b4e3b7..3890a3f8f 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -103,7 +103,7 @@ void InspIRCd::Cleanup() ports.clear(); GlobalCulls.Apply(); - Modules->UnloadAll(); + Modules.UnloadAll(); /* Delete objects dynamically allocated in constructor (destructor would be more appropriate, but we're likely exiting) */ /* Must be deleted before modes as it decrements modelines */ @@ -438,7 +438,7 @@ InspIRCd::InspIRCd(int argc, char** argv) : std::cout << std::endl; - this->Modules->LoadAll(); + this->Modules.LoadAll(); // Build ISupport as ModuleManager::LoadAll() does not do it this->ISupport.Build(); |
