Change outdated build delay to 3 days

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2020-07-02 09:07:18 +10:00
parent fbb02f52f2
commit 182e057932

View file

@ -181,7 +181,7 @@ public class Main {
Date buildDate = new Date(Integer.parseInt(Main.class.getPackage().getImplementationVendor()) * 1000L);
Calendar deadline = Calendar.getInstance();
deadline.add(Calendar.DAY_OF_YEAR, -1);
deadline.add(Calendar.DAY_OF_YEAR, -3);
if (buildDate.before(deadline.getTime())) {
System.err.println("*** Error, this build is outdated ***");
System.err.println("*** Please download a new build as per instructions from https://www.spigotmc.org/go/outdated-spigot ***");