Fix pairing crash in physics Octree

Remove section of code that should not run and was causing crash.

(cherry picked from commit 6a2912c856)
This commit is contained in:
lawnjelly 2022-12-20 19:25:34 +00:00 committed by Rémi Verschelde
parent f0fe514fc2
commit 0ed57602d9
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 0 additions and 13 deletions

View File

@ -85,19 +85,6 @@ void *BroadPhaseOctree::_pair_callback(void *self, OctreeElementID p_A, Collisio
}
bool valid_collision_pair = p_object_A->test_collision_mask(p_object_B);
void *pair_data = bpo->pair_userdata;
if (pair_data) {
// Checking an existing pair.
if (valid_collision_pair) {
// Nothing to do, pair is still valid.
return pair_data;
} else {
// Logical collision not valid anymore, unpair.
_unpair_callback(self, p_A, p_object_A, subindex_A, p_B, p_object_B, subindex_B, pair_data);
return nullptr;
}
}
if (!valid_collision_pair) {
return nullptr;