diff options
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 56b45632de..434b8fe7c9 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -3167,7 +3167,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) { OS::get_singleton()->shell_open(VERSION_DOCS_URL "/"); } break; case HELP_FORUM: { - OS::get_singleton()->shell_open("https://forum.godotengine.org/"); + OS::get_singleton()->shell_open("https://forum.redotengine.org/"); } break; case HELP_REPORT_A_BUG: { OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-engine/issues"); @@ -3183,13 +3183,13 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) { OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-docs/issues"); } break; case HELP_COMMUNITY: { - OS::get_singleton()->shell_open("https://godotengine.org/community"); + OS::get_singleton()->shell_open("https://redotengine.org/community"); } break; case HELP_ABOUT: { about->popup_centered(Size2(780, 500) * EDSCALE); } break; case HELP_SUPPORT_GODOT_DEVELOPMENT: { - OS::get_singleton()->shell_open("https://godotengine.org/donate"); + OS::get_singleton()->shell_open("https://redotengine.org/donate"); } break; case SET_RENDERER_NAME_SAVE_AND_RESTART: { ProjectSettings::get_singleton()->set("rendering/renderer/rendering_method", renderer_request); |