We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c3389 commit c603483Copy full SHA for c603483
crates/bevy_ecs/src/world/entity_ref.rs
@@ -703,9 +703,7 @@ fn fetch_table(
703
location: EntityLocation,
704
component_id: ComponentId,
705
) -> Option<&Column> {
706
- let table = &world.storages.tables[location.table_id];
707
- let components = table.get_column(component_id)?;
708
- Some(components)
+ world.storages.tables[location.table_id].get_column(component_id)
709
}
710
711
#[inline]
0 commit comments