mirror of
https://github.com/PaperMC/Waterfall.git
synced 2025-01-07 16:37:39 +01:00
85c0a35f0b
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing BungeeCord Changes: 6613aaea Add test fix for library classes being visible to non-dependent plugins 53ce6b93 #3200: Fix protocol for 21w40a d8e29384 #2466: Use switch in "BungeeCord" plugin message handling 5cf869df #3198: Remove terminally deprecated SecurityManager f26f7d88 Add optional 1.18 (21w40a) snapshot protocol support
27 lines
1.5 KiB
Diff
27 lines
1.5 KiB
Diff
From 114cbbfd6c824adc67afa2150ff5e943a2049ac2 Mon Sep 17 00:00:00 2001
|
|
From: Jamie Mansfield <dev@jamierocks.uk>
|
|
Date: Sat, 10 Jun 2017 20:56:02 +0100
|
|
Subject: [PATCH] Improve outdated build message
|
|
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/BungeeCordLauncher.java b/proxy/src/main/java/net/md_5/bungee/BungeeCordLauncher.java
|
|
index 39fc55f9..c2512dd5 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/BungeeCordLauncher.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/BungeeCordLauncher.java
|
|
@@ -53,9 +53,9 @@ public class BungeeCordLauncher
|
|
deadline.add( Calendar.WEEK_OF_YEAR, -8 );
|
|
if ( buildDate.before( deadline.getTime() ) )
|
|
{
|
|
- System.err.println( "*** Warning, this build is outdated ***" );
|
|
- System.err.println( "*** Please download a new build from https://ci.destroystokyo.com/job/Waterfall/ ***" );
|
|
- System.err.println( "*** You will get NO support regarding this build ***" );
|
|
+ System.err.println( "*** Hey! This build is potentially outdated :( ***" );
|
|
+ System.err.println( "*** Please check for a new build from https://papermc.io/downloads ***" );
|
|
+ System.err.println( "*** Should this build be outdated, you will get NO support for it. ***" );
|
|
System.err.println( "*** Server will start in 10 seconds ***" );
|
|
Thread.sleep( TimeUnit.SECONDS.toMillis( 10 ) );
|
|
}
|
|
--
|
|
2.30.1 (Apple Git-130)
|
|
|