2024-11-22 12:53:01 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Abel <abelvanhulst@gmail.com>
|
|
|
|
Date: Tue, 12 Nov 2024 22:25:35 +0100
|
|
|
|
Subject: [PATCH] API to allow/disallow tick sleeping
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
2024-12-03 17:58:41 +01:00
|
|
|
index 0731b4dd74c9e203f966c03dd2cb3a3bd4d9df69..ad816538b30079c62d5e1eb98c6f4b61e12e8d47 100644
|
2024-11-22 12:53:01 +01:00
|
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
2024-11-25 19:43:28 +01:00
|
|
|
@@ -2597,5 +2597,14 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
|
2024-11-22 12:53:01 +01:00
|
|
|
* Returns whether the server is sleeping/paused.
|
|
|
|
*/
|
|
|
|
boolean isPaused();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Allows or disallows the server to sleep/pause.
|
|
|
|
+ * If any plugin disallows pausing, the server will never pause.
|
|
|
|
+ *
|
|
|
|
+ * @param plugin The {@link org.bukkit.plugin.Plugin} that's allowing or disallowing pausing.
|
|
|
|
+ * @param value Whether to allow sleeping of the server (defaults to true).
|
|
|
|
+ */
|
|
|
|
+ void allowPausing(@NotNull org.bukkit.plugin.Plugin plugin, boolean value);
|
|
|
|
// Paper end - API to check if the server is sleeping
|
|
|
|
}
|