Skip to content

Commit 47cec47

Browse files
committed
Fix CI.
1 parent 190bd5b commit 47cec47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_ecs/src/query/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ impl<Q: WorldQuery, F: WorldQuery> QueryState<Q, F> {
978978
fetch.set_archetype(&self.fetch_state, archetype, tables);
979979
filter.set_archetype(&self.filter_state, archetype, tables);
980980
if filter.archetype_filter_fetch(location.index) {
981-
func(fetch.archetype_fetch(location.index))
981+
func(fetch.archetype_fetch(location.index));
982982
}
983983
}
984984
}

0 commit comments

Comments
 (0)