diff options
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_run.cpp | 3 | ||||
-rw-r--r-- | editor/editor_settings.cpp | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/editor/editor_run.cpp b/editor/editor_run.cpp index d36b8cece5..12bfd9bc50 100644 --- a/editor/editor_run.cpp +++ b/editor/editor_run.cpp @@ -41,6 +41,7 @@ Error EditorRun::run(const String &p_scene, const String p_custom_args, const Li List<String> args; String resource_path = GlobalConfig::get_singleton()->get_resource_path(); + String remote_host = EditorSettings::get_singleton()->get("network/debug_host"); if (resource_path != "") { args.push_back("-path"); @@ -49,7 +50,7 @@ Error EditorRun::run(const String &p_scene, const String p_custom_args, const Li if (true) { args.push_back("-rdebug"); - args.push_back("localhost:" + String::num(GLOBAL_GET("network/debug/remote_port"))); + args.push_back(remote_host + ":" + String::num(GLOBAL_GET("network/debug/remote_port"))); } args.push_back("-epid"); diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 7d7db5ac75..f70f34af4c 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -412,8 +412,6 @@ void EditorSettings::setup_network() { for (List<IP_Address>::Element *E = local_ip.front(); E; E = E->next()) { String ip = E->get(); - if (ip == "127.0.0.1") - continue; if (lip == "") lip = ip; |