From 980c6e18418a10e6ac8d04225bed54991d1d492d Mon Sep 17 00:00:00 2001 From: Christian Hughes Date: Fri, 11 Jul 2025 20:41:06 -0500 Subject: [PATCH] more terse --- crates/bevy_ecs/src/schedule/schedule.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/crates/bevy_ecs/src/schedule/schedule.rs b/crates/bevy_ecs/src/schedule/schedule.rs index e5c9675475..a9067b75b8 100644 --- a/crates/bevy_ecs/src/schedule/schedule.rs +++ b/crates/bevy_ecs/src/schedule/schedule.rs @@ -774,11 +774,9 @@ enum UninitializedId { /// the same set), so we need to track which conditions in that list /// are newly added and not yet initialized. /// - /// Note: We don't need to do this for systems because calling - /// `add_systems` multiple times with the same system results in - /// multiple duplicates of that system in the graph, each with their own - /// separate list of conditions. That means all of a system's conditions - /// are always initialized together. + /// Systems don't need this tracking because each `add_systems` call + /// creates separate nodes in the graph with their own conditions, + /// so all conditions are initialized together. uninitialized_conditions: Range, }, }