mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2024-11-24 10:36:25 +00:00
28 lines
939 B
Diff
28 lines
939 B
Diff
From 69878594b34608fc99156da400b20ae2b527c928 Mon Sep 17 00:00:00 2001
|
|
From: md_5 <git@md-5.net>
|
|
Date: Mon, 13 Jul 2015 19:10:15 +1000
|
|
Subject: [PATCH] Add restart API.
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
|
index 28845367c..19d2b0abf 100644
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
|
@@ -1860,6 +1860,13 @@ public interface Server extends PluginMessageRecipient {
|
|
public void broadcast(@NotNull net.md_5.bungee.api.chat.BaseComponent... components) {
|
|
throw new UnsupportedOperationException("Not supported yet.");
|
|
}
|
|
+
|
|
+ /**
|
|
+ * Restart the server. If the server administrator has not configured restarting, the server will stop.
|
|
+ */
|
|
+ public void restart() {
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
+ }
|
|
}
|
|
|
|
@NotNull
|
|
--
|
|
2.47.0
|
|
|