diff options
Diffstat (limited to 'src/core/ms_help.c')
-rw-r--r-- | src/core/ms_help.c | 6 |
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> ¶ms) { - 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); } }; |