Check if file was removed when parsing documentation

This commit is contained in:
Bartkk 2023-01-21 04:19:54 +01:00
parent 4db3716d8d
commit 292b24bae0

View File

@ -1533,6 +1533,11 @@ void EditorFileSystem::_update_script_classes() {
int index = -1;
EditorFileSystemDirectory *efd = find_file(path, &index);
if (!efd || index < 0) {
// The file was removed
continue;
}
for (int i = 0; i < ScriptServer::get_language_count(); i++) {
ScriptLanguage *lang = ScriptServer::get_language(i);
if (lang->supports_documentation() && efd->files[index]->type == lang->get_type()) {