mirror of
https://github.com/PaperMC/Paper.git
synced 2025-05-19 13:40:24 -07:00
Fix first execution of async delayed/repeating tasks being sync (#12166)
This commit is contained in:
parent
1d9b399427
commit
5f2ee83ed4
@ -181,7 +181,7 @@ public final class FoliaAsyncScheduler implements AsyncScheduler {
|
|||||||
|
|
||||||
private void setDelay(final ScheduledFuture<?> delay) {
|
private void setDelay(final ScheduledFuture<?> delay) {
|
||||||
this.delay = delay;
|
this.delay = delay;
|
||||||
this.state = STATE_SCHEDULED_EXECUTOR;
|
this.state = delay == null ? STATE_SCHEDULED_EXECUTOR : STATE_ON_TIMER;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user