aboutsummaryrefslogtreecommitdiffstats
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorGravatar peavey2008-03-19 01:23:50 +0000
committerGravatar peavey2008-03-19 01:23:50 +0000
commitc1f03ef2db4bed43adaa72aef7aa2b9be57ddfe4 (patch)
treefc90b4ae3c7ccb41ce8dedbd0ed6b7238d92853a /src/inspircd.cpp
parentSame here (diff)
Final tweak to AllModulesReportReady, should be there now.
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@9135 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index e1cb02719..20f9a0f5b 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -1193,7 +1193,7 @@ bool InspIRCd::AllModulesReportReady(userrec* user)
{
if (Config->implement_lists[i][I_OnCheckReady])
{
- if (!modules[i]->OnCheckReady(user))
+ if (modules[i]->OnCheckReady(user))
ready++;
total++;
}