diff options
Diffstat (limited to 'modules/commands/bs_info.cpp')
-rw-r--r-- | modules/commands/bs_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/bs_info.cpp b/modules/commands/bs_info.cpp index 5026de3c7..ed36818b3 100644 --- a/modules/commands/bs_info.cpp +++ b/modules/commands/bs_info.cpp @@ -71,7 +71,7 @@ class CommandBSInfo : public Command info[_("Real name")] = bi->realname; info[_("Created")] = do_strftime(bi->created); info[_("Options")] = bi->HasFlag(BI_PRIVATE) ? _("Private") : _("None"); - info[_("Used on")] = stringify(bi->chancount) + " channel(s)"; + info[_("Used on")] = stringify(bi->GetChannelCount()) + " channel(s)"; std::vector<Anope::string> replies; info.Process(replies); |