aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches-Unmapped/0670-Add-getMainThreadExecutor-to-BukkitScheduler.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-Server-Patches-Unmapped/0670-Add-getMainThreadExecutor-to-BukkitScheduler.patch')
-rw-r--r--Spigot-Server-Patches-Unmapped/0670-Add-getMainThreadExecutor-to-BukkitScheduler.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/Spigot-Server-Patches-Unmapped/0670-Add-getMainThreadExecutor-to-BukkitScheduler.patch b/Spigot-Server-Patches-Unmapped/0670-Add-getMainThreadExecutor-to-BukkitScheduler.patch
new file mode 100644
index 0000000000..f2acd9e212
--- /dev/null
+++ b/Spigot-Server-Patches-Unmapped/0670-Add-getMainThreadExecutor-to-BukkitScheduler.patch
@@ -0,0 +1,26 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Aleksander Jagiello <[email protected]>
+Date: Sun, 24 Jan 2021 22:17:54 +0100
+Subject: [PATCH] Add getMainThreadExecutor to BukkitScheduler
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
+index 13e461ffb2ee2e7d0440c0f60809ea99629b843c..0be39dac4b9dd69d7d73d86d64cf1e33e4086e81 100644
+--- a/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
++++ b/src/main/java/org/bukkit/craftbukkit/scheduler/CraftScheduler.java
+@@ -635,4 +635,15 @@ public class CraftScheduler implements BukkitScheduler {
+ public BukkitTask runTaskTimerAsynchronously(Plugin plugin, BukkitRunnable task, long delay, long period) throws IllegalArgumentException {
+ throw new UnsupportedOperationException("Use BukkitRunnable#runTaskTimerAsynchronously(Plugin, long, long)");
+ }
++
++ // Paper start - add getMainThreadExecutor
++ @Override
++ public Executor getMainThreadExecutor(Plugin plugin) {
++ Validate.notNull(plugin, "Plugin cannot be null");
++ return command -> {
++ Validate.notNull(command, "Command cannot be null");
++ this.runTask(plugin, command);
++ };
++ }
++ // Paper end
+ }