1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-04 19:21:46 +00:00

Merge pull request #78138 from KoBeWi/are_we_clear

Clear SelfList when destroying GDScriptLanguage
This commit is contained in:
Rémi Verschelde
2023-06-14 09:25:34 +02:00

View File

@@ -2025,6 +2025,8 @@ void GDScriptLanguage::finish() {
}
s = s->next();
}
script_list.clear();
function_list.clear();
}
void GDScriptLanguage::profiling_start() {