2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/ExpirableListEntry.java
|
|
|
|
+++ b/net/minecraft/server/ExpirableListEntry.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -23,7 +23,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2015-02-26 23:41:06 +01:00
|
|
|
protected ExpirableListEntry(T t0, JsonObject jsonobject) {
|
|
|
|
- super(t0, jsonobject);
|
|
|
|
+ super(checkExpiry(t0, jsonobject), jsonobject);
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
Date date;
|
|
|
|
|
2018-12-13 01:00:00 +01:00
|
|
|
@@ -72,4 +72,26 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
jsonobject.addProperty("expires", this.d == null ? "forever" : ExpirableListEntry.a.format(this.d));
|
|
|
|
jsonobject.addProperty("reason", this.e);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ public Date getCreated() {
|
|
|
|
+ return this.b;
|
|
|
|
+ }
|
|
|
|
+
|
2015-02-26 23:41:06 +01:00
|
|
|
+ private static <T> T checkExpiry(T object, JsonObject jsonobject) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ Date expires = null;
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ expires = jsonobject.has("expires") ? a.parse(jsonobject.get("expires").getAsString()) : null;
|
|
|
|
+ } catch (ParseException ex) {
|
|
|
|
+ // Guess we don't have a date
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (expires == null || expires.after(new Date())) {
|
|
|
|
+ return object;
|
|
|
|
+ } else {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|