diff --git a/core/math/bvh_structs.inc b/core/math/bvh_structs.inc index 58c8f0479a2..06f6e5d05dd 100644 --- a/core/math/bvh_structs.inc +++ b/core/math/bvh_structs.inc @@ -100,7 +100,11 @@ public: num_items++; return id; } +#ifdef DEV_ENABLED return -1; +#else + ERR_FAIL_V_MSG(0, "BVH request_item error."); +#endif } };