Format code [skip actions]

This commit is contained in:
github-actions 2023-05-11 04:27:51 +00:00
parent 42e6e4c44d
commit c78f9f2801

View File

@ -44,8 +44,7 @@ public final class ServerTask implements Runnable {
if (shouldRun) this.considerDelay = false;
return shouldRun; // Return the result.
} else if (this.period != -1)
return ticks % this.period == 0;
} else if (this.period != -1) return ticks % this.period == 0;
else return true;
}