summaryrefslogtreecommitdiff
path: root/core/math/bvh_misc.inc
diff options
context:
space:
mode:
Diffstat (limited to 'core/math/bvh_misc.inc')
-rw-r--r--core/math/bvh_misc.inc6
1 files changed, 1 insertions, 5 deletions
diff --git a/core/math/bvh_misc.inc b/core/math/bvh_misc.inc
index 71aa0e4fe0..9b35a1d36d 100644
--- a/core/math/bvh_misc.inc
+++ b/core/math/bvh_misc.inc
@@ -1,11 +1,7 @@
int _handle_get_tree_id(BVHHandle p_handle) const {
if (USE_PAIRS) {
- int tree = 0;
- if (_extra[p_handle.id()].pairable) {
- tree = 1;
- }
- return tree;
+ return _extra[p_handle.id()].tree_id;
}
return 0;
}