Shorten build expiry to 1 day

This commit is contained in:
md_5 2020-06-26 07:37:19 +10:00
parent 3f0c333870
commit 614fbae9d5
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

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, -3);
deadline.add(Calendar.DAY_OF_YEAR, -1);
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 ***");