summaryrefslogtreecommitdiffstats
path: root/core/config/project_settings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/config/project_settings.cpp')
-rw-r--r--core/config/project_settings.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/core/config/project_settings.cpp b/core/config/project_settings.cpp
index 9fd7ef9988..264259eb2f 100644
--- a/core/config/project_settings.cpp
+++ b/core/config/project_settings.cpp
@@ -36,7 +36,6 @@
#include "core/io/config_file.h"
#include "core/io/dir_access.h"
#include "core/io/file_access.h"
-#include "core/io/file_access_network.h"
#include "core/io/file_access_pack.h"
#include "core/io/marshalls.h"
#include "core/os/keyboard.h"
@@ -502,17 +501,6 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
}
}
- // If looking for files in a network client, use it directly
-
- if (FileAccessNetworkClient::get_singleton()) {
- Error err = _load_settings_text_or_binary("res://project.godot", "res://project.binary");
- if (err == OK && !p_ignore_override) {
- // Optional, we don't mind if it fails
- _load_settings_text("res://override.cfg");
- }
- return err;
- }
-
// Attempt with a user-defined main pack first
if (!p_main_pack.is_empty()) {