summaryrefslogtreecommitdiff
path: root/modules/core
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core')
-rw-r--r--modules/core/bs_help.cpp2
-rw-r--r--modules/core/cs_unban.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/bs_help.cpp b/modules/core/bs_help.cpp
index 43fb59c92..68169cdc8 100644
--- a/modules/core/bs_help.cpp
+++ b/modules/core/bs_help.cpp
@@ -36,7 +36,7 @@ class CommandBSHelp : public Command
for (CommandMap::const_iterator it = BotServ->Commands.begin(), it_end = BotServ->Commands.end(); it != it_end; ++it)
if (!Config->HidePrivilegedCommands || it->second->permission.empty() || (u->Account() && u->Account()->HasCommand(it->second->permission)))
it->second->OnServHelp(source);
- source.Reply(BOT_HELP_FOOTER, Config->BSMinUsers);
+ source.Reply(BOT_HELP_FOOTER, Config->BSMinUsers, Config->s_ChanServ.c_str(), Config->BSFantasyCharacter[0]);
}
};
diff --git a/modules/core/cs_unban.cpp b/modules/core/cs_unban.cpp
index df5d2877e..4460d9a9c 100644
--- a/modules/core/cs_unban.cpp
+++ b/modules/core/cs_unban.cpp
@@ -48,7 +48,7 @@ class CommandCSUnban : public Command
return MOD_CONT;
}
- common_unban(ci, u2);
+ common_unban(ci, u2, u == u2);
if (u2 == u)
source.Reply(CHAN_UNBANNED, c->name.c_str());
else