From 6d0e5aef1eb9ff8d31b89677fcb255d6dac332c0 Mon Sep 17 00:00:00 2001 From: lisk77 Date: Thu, 1 May 2025 12:09:30 +0200 Subject: [PATCH] fix: removed the error message in `get_entities_with` in scene.rs --- crates/comet_ecs/src/scene.rs | 1 - 1 file changed, 1 deletion(-) 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() }