From 3276cfec563c5a984e761d80ac09e4ddda6e60a3 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Mon, 20 Jun 2022 22:23:00 -0600 Subject: [PATCH] wip --- common/bspfile.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/common/bspfile.cc b/common/bspfile.cc index 6cd05bb6..52494798 100644 --- a/common/bspfile.cc +++ b/common/bspfile.cc @@ -386,7 +386,12 @@ public: return true; } - if (!a.is_mirrored(this) && a.will_clip_same_type(this)) { + if (!a.will_clip_same_type(this) && contents_are_type_equal(a, b)) { + // _noclipfaces + return true; + } + + if (!a.is_mirrored(this)) { return false; }