aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/unapplied/server/0150-Fix-this-stupid-bullshit.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/unapplied/server/0150-Fix-this-stupid-bullshit.patch')
-rw-r--r--patches/unapplied/server/0150-Fix-this-stupid-bullshit.patch52
1 files changed, 52 insertions, 0 deletions
diff --git a/patches/unapplied/server/0150-Fix-this-stupid-bullshit.patch b/patches/unapplied/server/0150-Fix-this-stupid-bullshit.patch
new file mode 100644
index 0000000000..13c470a8dc
--- /dev/null
+++ b/patches/unapplied/server/0150-Fix-this-stupid-bullshit.patch
@@ -0,0 +1,52 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Kyle Wood <[email protected]>
+Date: Sun, 6 Aug 2017 17:17:53 -0500
+Subject: [PATCH] Fix this stupid bullshit
+
+Disable the 15 second sleep when the server jar hasn't been rebuilt within a period of time.
+
+modified in order to prevent merge conflicts when Spigot changes/disables the warning,
+and to provide some level of hint without being disruptive.
+
+diff --git a/src/main/java/net/minecraft/server/Bootstrap.java b/src/main/java/net/minecraft/server/Bootstrap.java
+index 8ff786c366332588a2df053438f23cc9fb7e2b84..c887d34171f89c731d76c4ca92c70be2b1edc1e6 100644
+--- a/src/main/java/net/minecraft/server/Bootstrap.java
++++ b/src/main/java/net/minecraft/server/Bootstrap.java
+@@ -45,7 +45,7 @@ public class Bootstrap {
+ public static void bootStrap() {
+ if (!Bootstrap.isBootstrapped) {
+ // CraftBukkit start
+- String name = Bootstrap.class.getSimpleName();
++ /*String name = Bootstrap.class.getSimpleName(); // Paper
+ switch (name) {
+ case "DispenserRegistry":
+ break;
+@@ -59,7 +59,7 @@ public class Bootstrap {
+ System.err.println("*** WARNING: This server jar is unsupported, use at your own risk. ***");
+ System.err.println("**********************************************************************");
+ break;
+- }
++ }*/ // Paper
+ // CraftBukkit end
+ Bootstrap.isBootstrapped = true;
+ Instant instant = Instant.now();
+diff --git a/src/main/java/org/bukkit/craftbukkit/Main.java b/src/main/java/org/bukkit/craftbukkit/Main.java
+index 6f359e225eb11f22c61beb6463f9918002ce0086..ec442f1a6437f449d55739b990a4b69fcd48e8e0 100644
+--- a/src/main/java/org/bukkit/craftbukkit/Main.java
++++ b/src/main/java/org/bukkit/craftbukkit/Main.java
+@@ -258,10 +258,12 @@ public class Main {
+ Calendar deadline = Calendar.getInstance();
+ deadline.add(Calendar.DAY_OF_YEAR, -21);
+ if (buildDate.before(deadline.getTime())) {
+- System.err.println("*** Error, this build is outdated ***");
++ // Paper start - This is some stupid bullshit
++ System.err.println("*** Warning, you've not updated in a while! ***");
+ System.err.println("*** Please download a new build as per instructions from https://papermc.io/downloads/paper ***"); // Paper
+- System.err.println("*** Server will start in 20 seconds ***");
+- Thread.sleep(TimeUnit.SECONDS.toMillis(20));
++ //System.err.println("*** Server will start in 20 seconds ***");
++ //Thread.sleep(TimeUnit.SECONDS.toMillis(20));
++ // Paper End
+ }
+ }
+