From 506a775b0c0c23958623a40e644510dbd2266a25 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 6 May 2026 20:54:02 +0200 Subject: [PATCH] fix: disjoint Transform queries in update_tractor_beam_visual Add Without filter to boss_query so Bevy's parallel access checker can prove the &Transform read on bosses and the &mut Transform write on beam-sprite children target disjoint entity sets. Without it, the system panicked on first run with a B0001 "conflicts with a previous system parameter" error. --- src/enemy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/enemy.rs b/src/enemy.rs index e172487..2fb591b 100644 --- a/src/enemy.rs +++ b/src/enemy.rs @@ -660,7 +660,7 @@ pub fn boss_capture_attack( /// Update tractor beam visual: pulse opacity and update beam height. pub fn update_tractor_beam_visual( time: Res