diff --git a/crates/bevy_ecs/src/schedule/executor/mod.rs b/crates/bevy_ecs/src/schedule/executor/mod.rs index f3629c82c159a..d8aec0eed1a19 100644 --- a/crates/bevy_ecs/src/schedule/executor/mod.rs +++ b/crates/bevy_ecs/src/schedule/executor/mod.rs @@ -165,7 +165,8 @@ impl System for apply_deferred { fn is_exclusive(&self) -> bool { // This system is labeled exclusive because it is used by the system - // executor to find places where deferred commands should be applied. + // executor to find places where deferred commands should be applied, + // and commands can only be applied with exclusive access to the world. true }