Fix filesystem cache split error

This commit is contained in:
kobewi 2023-06-16 13:12:56 +02:00
parent 598378513b
commit 7f18db9d9d

View File

@ -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;