diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-14 22:33:03 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-14 22:33:03 +0000 |
commit | b194ca40b69ff2d7df2676dfa25f15ec2dd62825 (patch) | |
tree | 9f3e2c26f63bbf5e5a6988c67a7a40536a8ecefa | |
parent | 8bfb41c3cd70a2316a6671df21d7160de6683a06 (diff) |
Another dodgy count fixed
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8200 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 563e06c28..b844bc56b 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -599,7 +599,7 @@ void ModuleManager::LoadAll() } } printf_c("\nA total of \033[1;32m%d\033[0m module%s been loaded.\n", (this->GetCount()+1), (this->GetCount()+1) == 1 ? " has" : "s have"); - Instance->Log(DEFAULT,"Total loaded modules: %d", this->GetCount()); + Instance->Log(DEFAULT,"Total loaded modules: %d", this->GetCount()+1); } long ModuleManager::PriorityAfter(const std::string &modulename) |