mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 14:08:32 +00:00
send_events is ambiguous_with_all (#15629)
# 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`
This commit is contained in:
parent
528ca4f95e
commit
0628255c45
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue