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 78e763f commit b930ee0Copy full SHA for b930ee0
crates/bevy_ecs/src/schedule/executor/multi_threaded.rs
@@ -451,8 +451,7 @@ impl MultiThreadedExecutor {
451
sender.close();
452
} else {
453
sender
454
- .send(system_index)
455
- .await
+ .try_send(system_index)
456
.unwrap_or_else(|error| unreachable!("{}", error));
457
}
458
};
@@ -508,8 +507,7 @@ impl MultiThreadedExecutor {
508
507
509
510
511
512
513
514
515
@@ -532,8 +530,7 @@ impl MultiThreadedExecutor {
532
530
533
531
534
535
536
537
538
539
0 commit comments