diff --git a/crates/bevy_ecs/src/schedule/system_descriptor.rs b/crates/bevy_ecs/src/schedule/system_descriptor.rs index 2caa12c1e7152..74a3963ca26d7 100644 --- a/crates/bevy_ecs/src/schedule/system_descriptor.rs +++ b/crates/bevy_ecs/src/schedule/system_descriptor.rs @@ -60,6 +60,12 @@ where } } +impl IntoSystemDescriptor<()> for SystemDescriptor { + fn into_descriptor(self) -> SystemDescriptor { + self + } +} + impl IntoSystemDescriptor<()> for BoxedSystem<(), ()> { fn into_descriptor(self) -> SystemDescriptor { new_parallel_descriptor(self).into_descriptor()