Ignore "project_settings_override" in the editor

This commit is contained in:
Felipe Augusto Marques 2023-05-25 01:30:37 -03:00
parent 4c677c88e9
commit e759129dd5
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
Error ProjectSettings::setup(const String &p_path, const String &p_main_pack, bool p_upwards, bool p_ignore_override) {
Error err = _setup(p_path, p_main_pack, p_upwards, p_ignore_override);
if (err == OK) {
if (err == OK && !p_ignore_override) {
String custom_settings = GLOBAL_GET("application/config/project_settings_override");
if (!custom_settings.is_empty()) {
_load_settings_text(custom_settings);