summaryrefslogtreecommitdiff
path: root/editor/export
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-31 13:20:04 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-31 13:20:04 +0100
commite1648b3327431a09cc9498663fac483275eb711d (patch)
tree820eef8ec10cdfa1b5a0478ed9813ea25d600c33 /editor/export
parente768e02b789d2d0afbbc4f775d8cd8e807b1d79c (diff)
parent79897dd5bc75bb0553a48fd36537454f5ad95764 (diff)
Merge pull request #72445 from reduz/restore-script-class-cache-if-removed
Restore script class cache if removed
Diffstat (limited to 'editor/export')
-rw-r--r--editor/export/editor_export_platform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/export/editor_export_platform.cpp b/editor/export/editor_export_platform.cpp
index fe67813d65..a46484bb0e 100644
--- a/editor/export/editor_export_platform.cpp
+++ b/editor/export/editor_export_platform.cpp
@@ -814,7 +814,7 @@ Error EditorExportPlatform::export_project_files(const Ref<EditorExportPreset> &
HashSet<String> paths;
Vector<String> path_remaps;
- paths.insert(ProjectSettings::get_singleton()->get_project_data_path().path_join("global_script_class_cache.cfg"));
+ paths.insert(ProjectSettings::get_singleton()->get_global_class_list_path());
if (p_preset->get_export_filter() == EditorExportPreset::EXPORT_ALL_RESOURCES) {
//find stuff
_export_find_resources(EditorFileSystem::get_singleton()->get_filesystem(), paths);