diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2021-08-10 16:42:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-10 16:42:31 +0200 |
| commit | 46beaacec3d18c0d5f1d744e2c63ca09f5152c85 (patch) | |
| tree | e9520a708f1a8f65a829547c281f1cbedf38cca8 /core/variant/variant.cpp | |
| parent | 50d5569ad49752803b980eca85590f5362b12409 (diff) | |
| parent | ee6e05ee68afc7841848382fbd538fdf7369b214 (diff) | |
| download | redot-engine-46beaacec3d18c0d5f1d744e2c63ca09f5152c85.tar.gz | |
Merge pull request #51017 from vnen/extension-fixes
Diffstat (limited to 'core/variant/variant.cpp')
| -rw-r--r-- | core/variant/variant.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/variant/variant.cpp b/core/variant/variant.cpp index 97a1b4c02a..d538b9faff 100644 --- a/core/variant/variant.cpp +++ b/core/variant/variant.cpp @@ -3533,12 +3533,13 @@ void Variant::register_types() { _register_variant_methods(); _register_variant_setters_getters(); _register_variant_constructors(); + _register_variant_destructors(); _register_variant_utility_functions(); } void Variant::unregister_types() { _unregister_variant_operators(); _unregister_variant_methods(); _unregister_variant_setters_getters(); - _unregister_variant_constructors(); + _unregister_variant_destructors(); _unregister_variant_utility_functions(); } |
