Skip to content

Commit e4ad01d

Browse files
committed
fix rebase error
1 parent 243ae2f commit e4ad01d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_ecs/src/schedule/executor_parallel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ impl ParallelExecutor {
236236
if system_data.is_send {
237237
scope.spawn(task);
238238
} else {
239-
scope.spawn_local(task);
239+
scope.spawn_on_scope(task);
240240
}
241241

242242
#[cfg(test)]

0 commit comments

Comments
 (0)