First 1.19 build
This commit is contained in:
60
patches/api/0003-Add-last-tick-time-API.patch
Normal file
60
patches/api/0003-Add-last-tick-time-API.patch
Normal file
@@ -0,0 +1,60 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Ivan Pekov <ivan@mrivanplays.com>
|
||||
Date: Sun, 27 Sep 2020 18:01:50 +0300
|
||||
Subject: [PATCH] Add last tick time API
|
||||
|
||||
Original code by YatopiaMC, licensed under MIT
|
||||
You can find the original code on https://github.com/YatopiaMC/Yatopia
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
||||
index 3506a7fa07ee6e53704b1df8d8d2bb08704bfc37..920b55c2b9f0209490271ce416c05f7a7d8e9b13 100644
|
||||
--- a/src/main/java/org/bukkit/Bukkit.java
|
||||
+++ b/src/main/java/org/bukkit/Bukkit.java
|
||||
@@ -2380,6 +2380,16 @@ public final class Bukkit {
|
||||
return server.isStopping();
|
||||
}
|
||||
|
||||
+ // Yatopia start
|
||||
+ @Deprecated
|
||||
+ public static long getLastTickMs() {
|
||||
+ return server.getLastTickMs();
|
||||
+ }
|
||||
+ @NotNull public static java.time.Duration getLastTickTime() {
|
||||
+ return server.getLastTickTime();
|
||||
+ }
|
||||
+ // Yatopia end
|
||||
+
|
||||
/**
|
||||
* Returns the {@link com.destroystokyo.paper.entity.ai.MobGoals} manager
|
||||
*
|
||||
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
||||
index 58bb08e35e26400f967af89bfe963b23bc4ff79d..932fea11c30ddea6e7a3bf9d4ff516a8f792849c 100644
|
||||
--- a/src/main/java/org/bukkit/Server.java
|
||||
+++ b/src/main/java/org/bukkit/Server.java
|
||||
@@ -2081,6 +2081,26 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
|
||||
*/
|
||||
boolean isStopping();
|
||||
|
||||
+ // Yatopia start
|
||||
+ /**
|
||||
+ * Returns the time the last tick took in milliseconds.
|
||||
+ *
|
||||
+ * @return long time value
|
||||
+ * @deprecated newer method with java's Duration and a possibility to convert it from millis to something else
|
||||
+ */
|
||||
+ @Deprecated
|
||||
+ default long getLastTickMs() {
|
||||
+ return getLastTickTime().toMillis();
|
||||
+ }
|
||||
+ /**
|
||||
+ * Returns the time in {@link java.time.Duration} the last tick took.
|
||||
+ *
|
||||
+ * @return duration
|
||||
+ */
|
||||
+ @NotNull
|
||||
+ java.time.Duration getLastTickTime();
|
||||
+ // Yatopia end
|
||||
+
|
||||
/**
|
||||
* Returns the {@link com.destroystokyo.paper.entity.ai.MobGoals} manager
|
||||
*
|
||||
Reference in New Issue
Block a user