From 68b6a8bf3085cffdd9e0d068223515dd8f8268ab Mon Sep 17 00:00:00 2001 From: filoghost Date: Tue, 14 Dec 2021 21:38:37 +0100 Subject: [PATCH] Increment inactive placeholders' timeout ticks --- .../plugin/placeholder/tracking/ActivePlaceholderTracker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/tracking/ActivePlaceholderTracker.java b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/tracking/ActivePlaceholderTracker.java index f21e1142..ce8fe98c 100644 --- a/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/tracking/ActivePlaceholderTracker.java +++ b/plugin/src/main/java/me/filoghost/holographicdisplays/plugin/placeholder/tracking/ActivePlaceholderTracker.java @@ -34,7 +34,7 @@ public class ActivePlaceholderTracker implements PlaceholderReplaceFunction { this.registry = registry; this.tickClock = tickClock; this.exceptionHandler = new PlaceholderExceptionHandler(tickClock); - this.activePlaceholders = new TickExpiringMap<>(new HashMap<>(), 1); + this.activePlaceholders = new TickExpiringMap<>(new HashMap<>(), 10); } public void clearOutdatedEntries() {