Fix a crash.
This commit is contained in:
parent
cfee1d747a
commit
7d179b45f7
|
@ -220,29 +220,30 @@ fn calculate_path(
|
|||
.remove::<Speed>();
|
||||
continue;
|
||||
}
|
||||
let map = map.single();
|
||||
let coordinates_clone = *coordinates;
|
||||
let destination_clone = *destination;
|
||||
let query_pipeline_clone = query_pipeline.clone();
|
||||
let map_clone = map.clone();
|
||||
let shape_clone = (*shape).clone();
|
||||
let collider_set: StaticColliderComponentsSet = (&collider_query, &obstructions).into();
|
||||
let task = pool.spawn(async move {
|
||||
find_path_for_shape(
|
||||
entity,
|
||||
coordinates_clone,
|
||||
destination_clone,
|
||||
query_pipeline_clone,
|
||||
map_clone,
|
||||
collider_set,
|
||||
shape_clone,
|
||||
)
|
||||
});
|
||||
commands
|
||||
.entity(entity)
|
||||
.insert(Calculating(task))
|
||||
.remove::<Path>()
|
||||
.remove::<NoPath>();
|
||||
if let Ok(map) = map.get_single() {
|
||||
let coordinates_clone = *coordinates;
|
||||
let destination_clone = *destination;
|
||||
let query_pipeline_clone = query_pipeline.clone();
|
||||
let map_clone = map.clone();
|
||||
let shape_clone = (*shape).clone();
|
||||
let collider_set: StaticColliderComponentsSet = (&collider_query, &obstructions).into();
|
||||
let task = pool.spawn(async move {
|
||||
find_path_for_shape(
|
||||
entity,
|
||||
coordinates_clone,
|
||||
destination_clone,
|
||||
query_pipeline_clone,
|
||||
map_clone,
|
||||
collider_set,
|
||||
shape_clone,
|
||||
)
|
||||
});
|
||||
commands
|
||||
.entity(entity)
|
||||
.insert(Calculating(task))
|
||||
.remove::<Path>()
|
||||
.remove::<NoPath>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user