2020-08-03 18:48:42 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-10-27 20:15:13 +01:00
|
|
|
From: YatopiaMC <yatopiamc@gmail.com>
|
2020-08-03 18:48:42 +02:00
|
|
|
Date: Sat, 1 Aug 2020 15:51:06 -0500
|
|
|
|
Subject: [PATCH] Yatopia API Bundle
|
|
|
|
|
2020-08-05 15:21:25 +02:00
|
|
|
Lagging threshold + Purpur & Rainforest & Origami config
|
2020-08-03 18:48:42 +02:00
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
2020-11-07 08:02:33 +01:00
|
|
|
index 464b2161f42a9a3969336820bc793274f4d6e942..a1c7fdcf34519c4781fcd8190d7c2ee787448694 100644
|
2020-08-03 18:48:42 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Bukkit.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Bukkit.java
|
2020-11-07 08:02:33 +01:00
|
|
|
@@ -1808,4 +1808,15 @@ public final class Bukkit {
|
2020-08-03 18:48:42 +02:00
|
|
|
public static Server.Spigot spigot() {
|
|
|
|
return server.spigot();
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Purpur start
|
|
|
|
+ /**
|
2020-08-11 17:38:17 +02:00
|
|
|
+ * Check if the server is lagging, according to the laggy threshold setting.
|
2020-08-03 18:48:42 +02:00
|
|
|
+ *
|
2020-08-11 17:38:17 +02:00
|
|
|
+ * @return true if lagging
|
2020-08-03 18:48:42 +02:00
|
|
|
+ */
|
|
|
|
+ public static boolean isLagging() {
|
|
|
|
+ return server.isLagging();
|
|
|
|
+ }
|
|
|
|
+ // Purpur end
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
2020-11-07 08:02:33 +01:00
|
|
|
index 7a51edbde474bf610cb5928de4b1bbe2edf34638..720b39459382511cf23ee8af431f0fc4a691358c 100644
|
2020-08-03 18:48:42 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
2020-11-07 08:02:33 +01:00
|
|
|
@@ -1483,6 +1483,58 @@ public interface Server extends PluginMessageRecipient {
|
2020-08-03 18:48:42 +02:00
|
|
|
}
|
2020-08-11 17:38:17 +02:00
|
|
|
// Tuinity end - add config to timings report
|
2020-08-03 18:48:42 +02:00
|
|
|
|
2020-08-11 17:38:17 +02:00
|
|
|
+ // Akarin start
|
|
|
|
+ /**
|
|
|
|
+ * @deprecated yatopia does not import akarin config anymore
|
|
|
|
+ */
|
|
|
|
+ @Deprecated
|
|
|
|
+ @NotNull
|
|
|
|
+ public org.bukkit.configuration.file.YamlConfiguration getAkarinConfig()
|
|
|
|
+ {
|
|
|
|
+ return new org.bukkit.configuration.file.YamlConfiguration();
|
|
|
|
+ }
|
|
|
|
+ // Akarin end
|
|
|
|
+
|
2020-08-05 15:21:25 +02:00
|
|
|
+ // Rainforest start
|
2020-09-13 09:00:43 +02:00
|
|
|
+ /**
|
|
|
|
+ * @deprecated yatopia does not import akarin config anymore
|
|
|
|
+ */
|
|
|
|
+ @Deprecated
|
2020-08-03 18:48:42 +02:00
|
|
|
+ @NotNull
|
2020-08-05 15:21:25 +02:00
|
|
|
+ public org.bukkit.configuration.file.YamlConfiguration getRainforestConfig()
|
2020-08-03 18:48:42 +02:00
|
|
|
+ {
|
2020-09-13 09:00:43 +02:00
|
|
|
+ return new org.bukkit.configuration.file.YamlConfiguration();
|
2020-08-03 18:48:42 +02:00
|
|
|
+ }
|
2020-08-05 15:21:25 +02:00
|
|
|
+ // Rainforest end
|
|
|
|
+
|
2020-08-03 18:48:42 +02:00
|
|
|
+ // Purpur start
|
|
|
|
+ @NotNull
|
2020-08-11 17:38:17 +02:00
|
|
|
+ public org.bukkit.configuration.file.YamlConfiguration getPurpurConfig()
|
|
|
|
+ {
|
2020-08-03 18:48:42 +02:00
|
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @NotNull
|
2020-08-11 17:38:17 +02:00
|
|
|
+ public java.util.Properties getServerProperties()
|
|
|
|
+ {
|
2020-08-03 18:48:42 +02:00
|
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
|
|
+ }
|
|
|
|
+ // Purpur end
|
|
|
|
+ // Origami start - add config to timings report
|
|
|
|
+ @NotNull
|
|
|
|
+ public org.bukkit.configuration.file.YamlConfiguration getOrigamiConfig()
|
|
|
|
+ {
|
|
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
|
|
+ }
|
|
|
|
+ // Origami end
|
2020-08-13 17:53:32 +02:00
|
|
|
+ // Yatopia start - add config to timings report
|
|
|
|
+ @NotNull
|
|
|
|
+ public org.bukkit.configuration.file.YamlConfiguration getYatopiaConfig()
|
|
|
|
+ {
|
|
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
|
|
+ }
|
|
|
|
+ // Yatopia end
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Sends the component to the player
|
|
|
|
*
|
2020-11-07 08:02:33 +01:00
|
|
|
@@ -1583,4 +1635,13 @@ public interface Server extends PluginMessageRecipient {
|
2020-08-03 18:48:42 +02:00
|
|
|
@NotNull
|
|
|
|
com.destroystokyo.paper.entity.ai.MobGoals getMobGoals();
|
|
|
|
// Paper end
|
|
|
|
+
|
|
|
|
+ // Purpur start
|
|
|
|
+ /**
|
2020-08-11 17:38:17 +02:00
|
|
|
+ * Check if the server is lagging, according to the laggy threshold setting.
|
|
|
|
+ *
|
|
|
|
+ * @return true if lagging
|
|
|
|
+ */
|
2020-08-03 18:48:42 +02:00
|
|
|
+ boolean isLagging();
|
|
|
|
+ // Purpur end
|
|
|
|
}
|