mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
28 lines
931 B
Diff
28 lines
931 B
Diff
From 785014588a688d3453f23d230ef33662d51e3556 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 1ae5e96..69720e9 100644
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
|
@@ -965,6 +965,13 @@ public interface Server extends PluginMessageRecipient {
|
|
public void broadcast(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.");
|
|
+ }
|
|
}
|
|
|
|
Spigot spigot();
|
|
--
|
|
2.5.0
|
|
|