diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-19 15:41:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 15:41:03 +0100 |
commit | b5729a82e9925062f88b06023db679623b3a3808 (patch) | |
tree | b97fb3a8a7e07d88cd752b1eca1a031a04ff1a25 /modules/gdscript/gdscript.cpp | |
parent | 7c5ce0ac7c8d7ee5aca8e0361cfc28521c8d479c (diff) | |
parent | 4d960efafc64f0f94f68158ca49ed7f3dd9742dc (diff) | |
download | redot-engine-b5729a82e9925062f88b06023db679623b3a3808.tar.gz |
Merge pull request #36358 from vnen/gdscript-variant-ref-fix
Remove static script reference from GDScript class
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index a73276dda2..6d926fb88d 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -995,7 +995,6 @@ void GDScript::get_script_signal_list(List<MethodInfo> *r_signals) const { GDScript::GDScript() : script_list(this) { - _static_ref = this; valid = false; subclass_count = 0; initializer = NULL; |