69 lines
2.4 KiB
Diff
69 lines
2.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: MrHua269 <wangxyper@163.com>
|
|
Date: Sun, 12 Jan 2025 15:39:43 +0800
|
|
Subject: [PATCH] FoliaPR Add TPS From Region
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
|
index 9196b1e62b328b1e9790b966600aba9681dd0ddc..c4ebe5b9c27277dcc984aa582af2a5e5e12ca936 100644
|
|
--- a/src/main/java/org/bukkit/Bukkit.java
|
|
+++ b/src/main/java/org/bukkit/Bukkit.java
|
|
@@ -2441,6 +2441,28 @@ public final class Bukkit {
|
|
}
|
|
// Paper end
|
|
|
|
+ // Folia start
|
|
+ /**
|
|
+ * Gets the current location TPS.
|
|
+ *
|
|
+ * @param location the location for which to get the TPS
|
|
+ * @return current location TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the region doesn't exist
|
|
+ */
|
|
+ public double @Nullable [] getTPS(Location location) {
|
|
+ return server.getTPS(location);
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Gets the current chunk TPS.
|
|
+ *
|
|
+ * @param chunk the chunk for which to get the TPS
|
|
+ * @return current chunk TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the region doesn't exist
|
|
+ */
|
|
+ public double @Nullable [] getTPS(Chunk chunk){
|
|
+ return server.getTPS(chunk);
|
|
+ }
|
|
+ // Folia end
|
|
+
|
|
/**
|
|
* Get the advancement specified by this key.
|
|
*
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
|
index 11923ef0ea75f702273ba5481ac6d46cc0f17697..6bba6c555e8873057693f60ac1a4b6281b299258 100644
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
|
@@ -2123,6 +2123,24 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
|
|
double getAverageTickTime();
|
|
// Paper end
|
|
|
|
+ // Folia start
|
|
+ /**
|
|
+ * Gets the current location TPS.
|
|
+ *
|
|
+ * @param location the location for which to get the TPS
|
|
+ * @return current location TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the region doesn't exist
|
|
+ */
|
|
+ public double @Nullable [] getTPS(Location location);
|
|
+
|
|
+ /**
|
|
+ * Gets the current chunk TPS.
|
|
+ *
|
|
+ * @param chunk the chunk for which to get the TPS
|
|
+ * @return current chunk TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the region doesn't exist
|
|
+ */
|
|
+ public double @Nullable [] getTPS(Chunk chunk);
|
|
+ // Folia end
|
|
+
|
|
// Paper start
|
|
/**
|
|
* Gets the active {@link org.bukkit.command.CommandMap}
|