From c32294fb2262dddd84f66b4a4d104f2f43742eed Mon Sep 17 00:00:00 2001 From: Spartan322 Date: Wed, 16 Oct 2024 01:46:51 -0400 Subject: [PATCH] Remove `(Official)` from asset library button (cherry picked from commit 5f0300f86346aef1eece10d15c1f64059b9b9965) --- editor/plugins/asset_library_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp index 9cfab35a9a..1dc6d1d22c 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -705,7 +705,7 @@ void EditorAssetLibrary::_notification(int p_what) { void EditorAssetLibrary::_update_repository_options() { Dictionary default_urls; - default_urls["godotengine.org (Official)"] = "https://godotengine.org/asset-library/api"; + default_urls["godotengine.org"] = "https://godotengine.org/asset-library/api"; Dictionary available_urls = _EDITOR_DEF("asset_library/available_urls", default_urls, true); repository->clear(); Array keys = available_urls.keys();