From ac3553cb5041b972cbb5ec8a285f00beb269a6cc Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sat, 29 Jun 2019 18:27:05 -0600 Subject: [PATCH] brush.cc: temporary hotfix, disable bounding box tweak when rotate_offset is set. Breaks usage of origin brush with func_train --- qbsp/brush.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/brush.cc b/qbsp/brush.cc index 093980cc..7dbc66eb 100644 --- a/qbsp/brush.cc +++ b/qbsp/brush.cc @@ -468,7 +468,7 @@ CreateBrushFaces(hullbrush_t *hullbrush, const vec3_t rotate_offset, // Rotatable objects must have a bounding box big enough to // account for all its rotations - if (rotate_offset[0] || rotate_offset[1] || rotate_offset[2]) { + if (0 /*rotate_offset[0] || rotate_offset[1] || rotate_offset[2]*/) { vec_t delta; delta = fabs(max);