diff options
author | Adam <Adam@anope.org> | 2011-08-18 00:47:34 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-18 00:47:34 -0400 |
commit | ff7479f437c45a44d9c81f5e1102fa5a1ffe96a6 (patch) | |
tree | 77cbe42fa07a622de90ce46795e742ed9c9f1ee9 /modules/protocol/plexus.cpp | |
parent | 487d828fa0f69d1b425f17499c6f0991b5691c08 (diff) |
Fixed attaching to events in db_mysql & possibly having ChannelInfo::WhoSends return NULL if there really are *no* bots
Diffstat (limited to 'modules/protocol/plexus.cpp')
-rw-r--r-- | modules/protocol/plexus.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp index b060c76a3..9947d02ab 100644 --- a/modules/protocol/plexus.cpp +++ b/modules/protocol/plexus.cpp @@ -184,10 +184,7 @@ class PlexusProto : public IRCDProto void SendModeInternal(const BotInfo *bi, const Channel *dest, const Anope::string &buf) { - if (bi) - send_cmd(bi->GetUID(), "MODE %s %s", dest->name.c_str(), buf.c_str()); - else - send_cmd(Config->Numeric, "MODE %s %s", dest->name.c_str(), buf.c_str()); + send_cmd(bi ? bi->GetUID() : Config->Numeric, "MODE %s %s", dest->name.c_str(), buf.c_str()); } void SendModeInternal(const BotInfo *bi, const User *u, const Anope::string &buf) |