summaryrefslogtreecommitdiff
path: root/modules/core/os_update.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/os_update.cpp')
-rw-r--r--modules/core/os_update.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/os_update.cpp b/modules/core/os_update.cpp
index dbe6bef24..ad632f277 100644
--- a/modules/core/os_update.cpp
+++ b/modules/core/os_update.cpp
@@ -22,20 +22,20 @@ class CommandOSUpdate : public Command
CommandReturn Execute(User *u, const std::vector<Anope::string> &params)
{
- notice_lang(Config.s_OperServ, u, OPER_UPDATING);
+ notice_lang(Config->s_OperServ, u, OPER_UPDATING);
save_data = true;
return MOD_CONT;
}
bool OnHelp(User *u, const Anope::string &subcommand)
{
- notice_help(Config.s_OperServ, u, OPER_HELP_UPDATE);
+ notice_help(Config->s_OperServ, u, OPER_HELP_UPDATE);
return true;
}
void OnServHelp(User *u)
{
- notice_lang(Config.s_OperServ, u, OPER_HELP_CMD_UPDATE);
+ notice_lang(Config->s_OperServ, u, OPER_HELP_CMD_UPDATE);
}
};