1
0
Fork 0
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 ()

This commit is contained in:
Warrior 2025-02-25 21:45:33 +01:00 committed by GitHub
parent 1d9b399427
commit 5f2ee83ed4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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