Skip to content

Commit b54a3c1

Browse files
committed
ignore ambiguities on auto sync points
1 parent 0a880ee commit b54a3c1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/bevy_ecs/src/schedule/schedule.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,10 @@ impl ScheduleGraph {
10331033
))));
10341034
self.system_conditions.push(Vec::new());
10351035

1036+
// ignore ambiguities with auto sync points
1037+
// They aren't under user control, so no one should know or care.
1038+
self.ambiguous_with_all.insert(id);
1039+
10361040
id
10371041
}
10381042

0 commit comments

Comments
 (0)