diff options
author | trollodel <33117082+trollodel@users.noreply.github.com> | 2022-05-23 11:39:44 +0200 |
---|---|---|
committer | trollodel <33117082+trollodel@users.noreply.github.com> | 2022-05-23 12:21:13 +0200 |
commit | 51b229bffa06da41ae1b07957fd8a3b6ac567593 (patch) | |
tree | e5587382c0d77536cc37e5cda62de3b6734fc3d7 /scene/2d | |
parent | 603de7a0557cdbdd5405e345b55901f506cc5b40 (diff) |
Fix Joint3D and Joint2D warning causing a crash
Diffstat (limited to 'scene/2d')
-rw-r--r-- | scene/2d/joint_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/joint_2d.cpp b/scene/2d/joint_2d.cpp index b527a72de6..7b9f7e14ca 100644 --- a/scene/2d/joint_2d.cpp +++ b/scene/2d/joint_2d.cpp @@ -50,6 +50,7 @@ void Joint2D::_disconnect_signals() { void Joint2D::_body_exit_tree() { _disconnect_signals(); _update_joint(true); + update_configuration_warnings(); } void Joint2D::_update_joint(bool p_only_free) { @@ -64,7 +65,6 @@ void Joint2D::_update_joint(bool p_only_free) { if (p_only_free || !is_inside_tree()) { PhysicsServer2D::get_singleton()->joint_clear(joint); warning = String(); - update_configuration_warnings(); return; } |