diff --git a/platform/web/api/web_tools_editor_plugin.cpp b/platform/web/api/web_tools_editor_plugin.cpp index 4bf0de7768..ae5ab85cd9 100644 --- a/platform/web/api/web_tools_editor_plugin.cpp +++ b/platform/web/api/web_tools_editor_plugin.cpp @@ -73,7 +73,7 @@ void WebToolsEditorPlugin::_download_zip() { // Name the downloaded ZIP file to contain the project name and download date for easier organization. // Replace characters not allowed (or risky) in Windows file names with safe characters. // In the project name, all invalid characters become an empty string so that a name - // like "Platformer 2: Redot-chan's Revenge" becomes "platformer_2-_godette-s_revenge". + // like "Platformer 2: Redot-chan's Revenge" becomes "platformer_2-_redot-chan-s_revenge". const String project_name = GLOBAL_GET("application/config/name"); const String project_name_safe = project_name.to_lower().replace(" ", "_"); const String datetime_safe =