Skip to content

Commit

Permalink
ignore ambiguities on auto sync points
Browse files Browse the repository at this point in the history
  • Loading branch information
hymm committed Sep 22, 2023
1 parent 0a880ee commit b54a3c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/bevy_ecs/src/schedule/schedule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1033,6 +1033,10 @@ impl ScheduleGraph {
))));
self.system_conditions.push(Vec::new());

// ignore ambiguities with auto sync points
// They aren't under user control, so no one should know or care.
self.ambiguous_with_all.insert(id);

id
}

Expand Down

0 comments on commit b54a3c1

Please sign in to comment.