3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-07-31 03:18:03 +02:00

Correct runRepeatingSync order

Dieser Commit ist enthalten in:
Matsv 2018-01-19 11:05:16 +01:00
Ursprung 5a74e129a4
Commit 721297bf21

Datei anzeigen

@ -181,7 +181,7 @@ public class ViaVersionPlugin extends JavaPlugin implements ViaPlatform {
@Override
public TaskId runRepeatingSync(Runnable runnable, Long ticks) {
return new BukkitTaskId(getServer().getScheduler().runTaskTimer(this, runnable, ticks, 0).getTaskId());
return new BukkitTaskId(getServer().getScheduler().runTaskTimer(this, runnable, 0, ticks).getTaskId());
}
@Override