diff options
Diffstat (limited to 'patch-remap/og/net/minecraft/server/commands/CommandSchedule.patch')
-rw-r--r-- | patch-remap/og/net/minecraft/server/commands/CommandSchedule.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/patch-remap/og/net/minecraft/server/commands/CommandSchedule.patch b/patch-remap/og/net/minecraft/server/commands/CommandSchedule.patch new file mode 100644 index 0000000000..00b2030779 --- /dev/null +++ b/patch-remap/og/net/minecraft/server/commands/CommandSchedule.patch @@ -0,0 +1,11 @@ +--- a/net/minecraft/server/commands/CommandSchedule.java ++++ b/net/minecraft/server/commands/CommandSchedule.java +@@ -55,7 +55,7 @@ + } else { + long j = commandlistenerwrapper.getLevel().getGameTime() + (long) i; + MinecraftKey minecraftkey = (MinecraftKey) pair.getFirst(); +- CustomFunctionCallbackTimerQueue<MinecraftServer> customfunctioncallbacktimerqueue = commandlistenerwrapper.getServer().getWorldData().overworldData().getScheduledEvents(); ++ CustomFunctionCallbackTimerQueue<MinecraftServer> customfunctioncallbacktimerqueue = commandlistenerwrapper.getLevel().serverLevelData.overworldData().getScheduledEvents(); // CraftBukkit - SPIGOT-6667: Use world specific function timer + + ((Either) pair.getSecond()).ifLeft((net_minecraft_commands_functions_commandfunction) -> { + String s = minecraftkey.toString(); |