Sfoglia il codice sorgente

Fix errors destroying script with static variables
Fixes #78376
After #78138 'script_list' is now cleared in 'GDScriptLanguage::finish'
Because of that, we can safely remove the removal from that list that
happens on 'GDScript::~GDScript'.

jpcerrone 2 anni fa
parent
commit
8ce8216d17
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      modules/gdscript/gdscript.cpp

+ 1 - 1
modules/gdscript/gdscript.cpp

@@ -1542,7 +1542,7 @@ GDScript::~GDScript() {
 	{
 		MutexLock lock(GDScriptLanguage::get_singleton()->mutex);
 
-		GDScriptLanguage::get_singleton()->script_list.remove(&script_list);
+		script_list.remove_from_list();
 	}
 }