Fix custom resources often missing from Quick Load dialog

This commit is contained in:
Victor Kostin 2024-07-04 00:25:16 +05:00 committed by Rémi Verschelde
parent 6a13fdcae3
commit 3afc7774de
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -326,8 +326,8 @@ void EditorFileSystem::_scan_filesystem() {
FileCache fc;
fc.type = split[1];
if (fc.type.contains("/")) {
fc.type = fc.type.get_slice("/", 0);
fc.resource_script_class = fc.type.get_slice("/", 1);
fc.type = split[1].get_slice("/", 0);
fc.resource_script_class = split[1].get_slice("/", 1);
}
fc.uid = split[2].to_int();
fc.modification_time = split[3].to_int();