Browse Source

Merge pull request #78324 from KoBeWi/9

Fix filesystem cache split error
Rémi Verschelde 2 years ago
parent
commit
f3d87d2e90
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/editor_file_system.cpp

+ 1 - 1
editor/editor_file_system.cpp

@@ -262,7 +262,7 @@ void EditorFileSystem::_scan_filesystem() {
 
 				} else {
 					Vector<String> split = l.split("::");
-					ERR_CONTINUE(split.size() != 9);
+					ERR_CONTINUE(split.size() < 9);
 					String name = split[0];
 					String file;