0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 00:32:35 +01:00

modules/console: Fix imports misnaming m_conf -> conf.

This commit is contained in:
Jason Volk 2019-06-28 22:41:00 -07:00
parent 61e3fa848c
commit 1636fd795d

View file

@ -1296,7 +1296,7 @@ console_cmd__conf__set(opt &out, const string_view &line)
static mods::import<prototype> set_conf_item
{
"m_conf", "set_conf_item"
"conf", "set_conf_item"
};
const auto event_id
@ -1351,7 +1351,7 @@ console_cmd__conf__rehash(opt &out, const string_view &line)
using prototype = void (const string_view &, const bool &);
static mods::import<prototype> rehash_conf
{
"m_conf", "rehash_conf"
"conf", "rehash_conf"
};
string_view prefix
@ -1389,7 +1389,7 @@ console_cmd__conf__default(opt &out, const string_view &line)
using prototype = void (const string_view &);
static mods::import<prototype> default_conf
{
"m_conf", "default_conf"
"conf", "default_conf"
};
string_view prefix
@ -1420,7 +1420,7 @@ console_cmd__conf__reload(opt &out, const string_view &line)
using prototype = void ();
static mods::import<prototype> reload_conf
{
"m_conf", "reload_conf"
"conf", "reload_conf"
};
reload_conf();
@ -1437,7 +1437,7 @@ console_cmd__conf__reset(opt &out, const string_view &line)
using prototype = void ();
static mods::import<prototype> refresh_conf
{
"m_conf", "refresh_conf"
"conf", "refresh_conf"
};
refresh_conf();