diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-19 00:23:51 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-19 00:23:51 +0000 |
commit | 6d05c35ac834007a5fafdf8b24c859a01cf3d553 (patch) | |
tree | 158809fb34f63ea1863321a442fc3aa3af487b54 /src | |
parent | 26057b119fc676f268fa920b6d34ff8371e81183 (diff) |
Whoops, and dont get the comparison backwards. dont look at me like that, its almost 3am :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9130 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index be4bc012e..76cd9a37c 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -770,7 +770,7 @@ bool InspIRCd::AllModulesReportReady(User* user) if ((*i)->OnCheckReady(user)) ready++; } - return (ready == Modules->EventHandlers[I_OnCheckReady].size()); + return (ready != Modules->EventHandlers[I_OnCheckReady].size()); } time_t InspIRCd::Time() |