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 86f1521 commit be22235Copy full SHA for be22235
crates/bevy_ecs/src/query/state.rs
@@ -265,10 +265,9 @@ where
265
entities: [Entity; N],
266
) -> Result<[<Q::Fetch as Fetch<'w, 's>>::Item; N], QueryEntityError> {
267
self.update_archetypes(world);
268
- self.validate_world(world);
269
270
// SAFE: method requires exclusive world access
271
- // and world has been validated
+ // and world has been validated via update_archetypes
272
unsafe {
273
self.get_multiple_unchecked_manual(
274
world,
0 commit comments