mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-06 06:15:19 +02:00
Fix first execution of async delayed/repeating tasks being sync (#12166)
This commit is contained in:
parent
1d9b399427
commit
5f2ee83ed4
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ public final class FoliaAsyncScheduler implements AsyncScheduler {
|
|||
|
||||
private void setDelay(final ScheduledFuture<?> delay) {
|
||||
this.delay = delay;
|
||||
this.state = STATE_SCHEDULED_EXECUTOR;
|
||||
this.state = delay == null ? STATE_SCHEDULED_EXECUTOR : STATE_ON_TIMER;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue