From 0628255c4513c38239b297afe0286a624ac6c7b4 Mon Sep 17 00:00:00 2001 From: IceSentry Date: Thu, 3 Oct 2024 16:02:52 -0400 Subject: [PATCH] send_events is ambiguous_with_all (#15629) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Objective > Alice 🌹 — Today at 3:43 PM bevy_dev_tools::ci_testing::systems::send_events This system should be marked as ambiguous with everything I think ## Solution - Mark it as `ambiguous_with_all` --- crates/bevy_dev_tools/src/ci_testing/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/bevy_dev_tools/src/ci_testing/mod.rs b/crates/bevy_dev_tools/src/ci_testing/mod.rs index 5c85aeff48340..18eeb6ba611b0 100644 --- a/crates/bevy_dev_tools/src/ci_testing/mod.rs +++ b/crates/bevy_dev_tools/src/ci_testing/mod.rs @@ -56,7 +56,8 @@ impl Plugin for CiTestingPlugin { systems::send_events .before(trigger_screenshots) .before(bevy_window::close_when_requested) - .in_set(SendEvents), + .in_set(SendEvents) + .ambiguous_with_all(), ); // The offending system does not exist in the wasm32 target.