diff options
| author | 2005-12-26 21:50:01 +0000 | |
|---|---|---|
| committer | 2005-12-26 21:50:01 +0000 | |
| commit | f95fc3c6a89a6e5996fe93b0da4f93dd09e3588d (patch) | |
| tree | 0f3ea9262db1c5b76050c4d0467b08ff000bf8b0 /src/inspircd.cpp | |
| parent | Added global_implementation array, bypasses calls which *NO* modules are curr... (diff) | |
| download | inspircd++-f95fc3c6a89a6e5996fe93b0da4f93dd09e3588d.tar.gz inspircd++-f95fc3c6a89a6e5996fe93b0da4f93dd09e3588d.tar.bz2 inspircd++-f95fc3c6a89a6e5996fe93b0da4f93dd09e3588d.zip | |
Fixed typo
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2671 e03df62e-2008-0410-955e-edbf42e46eb7
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 b560a2de6..24effa62a 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -299,7 +299,7 @@ bool InspIRCd::UnloadModule(const char* filename) } for(int t = 0; t < 255; t++) - Config->global_implementation[t] -= implement_lists[j][t]; + Config->global_implementation[t] -= Config->implement_lists[j][t]; FOREACH_MOD(I_OnUnloadModule,OnUnloadModule(modules[j],Config->module_names[j])); // found the module @@ -374,7 +374,7 @@ bool InspIRCd::LoadModule(const char* filename) modules[MODCOUNT+1]->Implements(x); for(int t = 0; t < 255; t++) - Config->global_implementation[t] += implement_lists[MODCOUNT+1][t]; + Config->global_implementation[t] += Config->implement_lists[MODCOUNT+1][t]; } else { |
