aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0376-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch
diff options
context:
space:
mode:
authorJason Penilla <[email protected]>2024-04-27 13:27:01 -0700
committerJason Penilla <[email protected]>2024-04-27 13:27:01 -0700
commite2552eea2481871c9d8445a3c5653a2329112648 (patch)
tree727c90f395576b66200f8d9e59f38859f3850562 /patches/server/0376-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch
parent0b1b1fe067444c5e879313e017da0ffd5d6b826d (diff)
downloadPaper-e2552eea2481871c9d8445a3c5653a2329112648.tar.gz
Paper-e2552eea2481871c9d8445a3c5653a2329112648.zip
Start cleaning up plugin remapping patches
Diffstat (limited to 'patches/server/0376-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch')
-rw-r--r--patches/server/0376-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/patches/server/0376-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch b/patches/server/0376-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch
new file mode 100644
index 0000000000..4175cae3b0
--- /dev/null
+++ b/patches/server/0376-Fix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patch
@@ -0,0 +1,21 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: ossi <[email protected]>
+Date: Fri, 12 Jun 2020 01:38:06 +0300
+Subject: [PATCH] Fix CraftScheduler#runTaskTimerAsynchronously(Plugin,
+ Consumer<BukkitTask>, long, long) scheduling a non-repeating task instead of
+ a repeating one.
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
+index c6ce8ed5fa73ee6221332083b3376b30bfe61bd0..71a147df3bcbd5bb82934da3e6e14326746cf2e3 100644
+--- a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
++++ b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
+@@ -198,7 +198,7 @@ public class CraftScheduler implements BukkitScheduler {
+
+ @Override
+ public void runTaskTimerAsynchronously(Plugin plugin, Consumer<? super BukkitTask> task, long delay, long period) throws IllegalArgumentException {
+- this.runTaskTimerAsynchronously(plugin, (Object) task, delay, CraftTask.NO_REPEATING);
++ this.runTaskTimerAsynchronously(plugin, (Object) task, delay, period); // Paper
+ }
+
+ @Override