From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: JRoy Date: Fri, 10 Apr 2020 21:24:35 -0400 Subject: [PATCH] Expose MinecraftServer#isRunning This allows for plugins to detect if the server is actually turning off in onDisable rather than just plugins reloading. diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java index 2d73a06dc6b6a5163696750cb563d52e327ab4d1..6a8e8b039e0c6473a540824ae1f22b1ab321d6ca 100644 --- a/src/main/java/org/bukkit/Bukkit.java +++ b/src/main/java/org/bukkit/Bukkit.java @@ -1732,6 +1732,15 @@ public final class Bukkit { public static int getCurrentTick() { return server.getCurrentTick(); } + + /** + * Checks if the server is in the process of being shutdown. + * + * @return true if server is in the process of being shutdown + */ + public static boolean isStopping() { + return server.isStopping(); + } // Paper end @NotNull diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java index a15e672be066cef7828a8e0c5b09209d8c268181..0269120a74d6368647ef3ad84d8c55640d38c152 100644 --- a/src/main/java/org/bukkit/Server.java +++ b/src/main/java/org/bukkit/Server.java @@ -1514,5 +1514,12 @@ public interface Server extends PluginMessageRecipient { * @return Current tick */ int getCurrentTick(); + + /** + * Checks if the server is in the process of being shutdown. + * + * @return true if server is in the process of being shutdown + */ + boolean isStopping(); // Paper end }