Default cg_autoupdate to true

This commit is contained in:
fed 2022-02-01 09:16:15 +01:00
parent c659eb94c0
commit 8ba39f8fd5

View File

@ -16,7 +16,7 @@ namespace config
public:
void post_unpack() override
{
dvars::register_bool("cg_autoUpdate", false, game::DvarFlags::DVAR_FLAG_SAVED);
dvars::register_bool("cg_autoUpdate", true, game::DvarFlags::DVAR_FLAG_SAVED);
}
};
}