From 49cabafd814b8ac60abf399f5efad79c4d09f1cc Mon Sep 17 00:00:00 2001 From: arctic_hen7 Date: Wed, 7 Jul 2021 10:12:12 +1000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20fixed=20bones=20intersect?= =?UTF-8?q?ion=20operator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/bones.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bones.rs b/src/bones.rs index dbde089..8643afe 100644 --- a/src/bones.rs +++ b/src/bones.rs @@ -191,8 +191,8 @@ impl BonesOperator { for operator in operators { let op_matches = operator.matches(exit_code); // We only need one of them to be false (aka. all of them have to be true) + is_match = op_matches; if !op_matches { - is_match = false; break; } }