diff --git a/src/core/entity_handle.rs b/src/core/entity_handle.rs index 4af84a0..c6dd4be 100644 --- a/src/core/entity_handle.rs +++ b/src/core/entity_handle.rs @@ -21,9 +21,7 @@ static DESTROY: BevyChannel = BevyChannel::new(); pub struct EntityHandle(pub Entity); impl Drop for EntityHandle { fn drop(&mut self) { - if DESTROY.send(self.0).is_none() { - error!("Entity Destroy channel not open"); - } + DESTROY.send(self.0); } } impl From for EntityHandle {