diff options
author | Adam <Adam@anope.org> | 2010-10-03 15:59:19 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-03 15:59:19 -0400 |
commit | 632f8df76b31f1300e7ac72890567834eac5511e (patch) | |
tree | c8566121ac3ab41e7eeaed390be80f5a9ad9bc97 /src/logger.cpp | |
parent | 663a8b9a1c704bec8e15ec1cf21d716df2db00e7 (diff) |
Fixed checking the global block in the config to work ok, fixed having non-core service bots logging messages, fixed setting the topic to the topic setter on inspircd12/20, and fixed logging status mode changes on ts6 ircds
Diffstat (limited to 'src/logger.cpp')
-rw-r--r-- | src/logger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logger.cpp b/src/logger.cpp index d5982c3c7..33ed3545a 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -143,7 +143,7 @@ Log::Log(User *u, Channel *c, const Anope::string &category) : Type(LOG_CHANNEL) if (!c) throw CoreException("Invalid pointers passed to Log::Log"); - this->bi = whosends(c->ci); + this->bi = ChanServ; this->Category = category; if (this->bi) this->Sources.push_back(this->bi->nick); |