From 0ccfe9699f07cfabe87f680e0cd279c38d479aac Mon Sep 17 00:00:00 2001 From: asofold Date: Tue, 8 Dec 2015 19:24:40 +0100 Subject: [PATCH] Increase default max age. --- .../neatmonster/nocheatplus/checks/net/model/TeleportQueue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/TeleportQueue.java b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/TeleportQueue.java index b5c2e9dc..70ad07c1 100644 --- a/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/TeleportQueue.java +++ b/NCPCore/src/main/java/fr/neatmonster/nocheatplus/checks/net/model/TeleportQueue.java @@ -32,7 +32,7 @@ public class TeleportQueue { /** Location from a Bukkit event, which we expect an outgoing teleport for. */ private DataLocation expectOutgoing = null; - private long maxAge = 1500; // TODO: configurable + private long maxAge = 4000; // TODO: configurable private int maxQueueSize = 60; // TODO: configurable