summaryrefslogtreecommitdiff
path: root/src/core/ms_help.c
diff options
context:
space:
mode:
authorAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2009-11-28 23:02:07 +0000
committerAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2009-11-28 23:02:07 +0000
commita08b3ec5924c946308ac086cd3ee7d701610d3be (patch)
tree84da442a85ffeccd6425cc7c85db9eda6e881753 /src/core/ms_help.c
parentf6b823ade85160f94544d1ad1de4d8fbc42b2712 (diff)
Massive move of all of the Config variables out of global scope to the Config class
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2674 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/ms_help.c')
-rw-r--r--src/core/ms_help.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ms_help.c b/src/core/ms_help.c
index ae26da622..da45e2126 100644
--- a/src/core/ms_help.c
+++ b/src/core/ms_help.c
@@ -25,15 +25,15 @@ class CommandMSHelp : public Command
CommandReturn Execute(User *u, const std::vector<ci::string> &params)
{
- mod_help_cmd(s_MemoServ, u, MEMOSERV, params[0].c_str());
+ mod_help_cmd(Config.s_MemoServ, u, MEMOSERV, params[0].c_str());
return MOD_CONT;
}
void OnSyntaxError(User *u, const ci::string &subcommand)
{
- notice_help(s_MemoServ, u, MEMO_HELP_HEADER);
+ notice_help(Config.s_MemoServ, u, MEMO_HELP_HEADER);
FOREACH_MOD(I_OnMemoServHelp, OnMemoServHelp(u));
- notice_help(s_MemoServ, u, MEMO_HELP_FOOTER, s_ChanServ);
+ notice_help(Config.s_MemoServ, u, MEMO_HELP_FOOTER, Config.s_ChanServ);
}
};