diff options
Diffstat (limited to 'patches/server/0311-Server-Tick-Events.patch')
-rw-r--r-- | patches/server/0311-Server-Tick-Events.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/patches/server/0311-Server-Tick-Events.patch b/patches/server/0311-Server-Tick-Events.patch new file mode 100644 index 0000000000..5feb5afd52 --- /dev/null +++ b/patches/server/0311-Server-Tick-Events.patch @@ -0,0 +1,31 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Aikar <[email protected]> +Date: Wed, 27 Mar 2019 22:48:45 -0400 +Subject: [PATCH] Server Tick Events + +Fires event at start and end of a server tick + +diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java +index acc9f22a1284cea2e29f3616598f8388f0a0e6f6..f9a96a11764b66709a0d74122f9ecc06d0365a93 100644 +--- a/src/main/java/net/minecraft/server/MinecraftServer.java ++++ b/src/main/java/net/minecraft/server/MinecraftServer.java +@@ -1302,6 +1302,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa + }); + isOversleep = false;MinecraftTimings.serverOversleep.stopTiming(); + // Paper end ++ new com.destroystokyo.paper.event.server.ServerTickStartEvent(this.tickCount+1).callEvent(); // Paper + + ++this.tickCount; + this.tickChildren(shouldKeepTicking); +@@ -1340,6 +1341,11 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa + this.runAllTasks(); + } + // Paper end ++ // Paper start ++ long endTime = System.nanoTime(); ++ long remaining = (TICK_TIME - (endTime - lastTick)) - catchupTime; ++ new com.destroystokyo.paper.event.server.ServerTickEndEvent(this.tickCount, ((double)(endTime - lastTick) / 1000000D), remaining).callEvent(); ++ // Paper end + this.profiler.push("tallying"); + long l = this.tickTimes[this.tickCount % 100] = Util.getNanos() - i; + |