diff --git a/crates/comet_ecs/src/scene.rs b/crates/comet_ecs/src/scene.rs index 7eb9dad..83e63ca 100644 --- a/crates/comet_ecs/src/scene.rs +++ b/crates/comet_ecs/src/scene.rs @@ -206,7 +206,6 @@ impl Scene { if self.archetypes.contains_archetype(&components) { return self.archetypes.get_archetype(&components).unwrap().clone().iter().map(|x| *x as usize).collect(); } - error!("The given components {:?} are not registered in the scene!", components); Vec::new() }