reduce activity decay 10s -> 8s

This commit is contained in:
okx-code
2026-06-28 23:03:44 +01:00
parent 7397f7d0f9
commit b252fffad9

View File

@@ -19,7 +19,7 @@ import org.bukkit.event.player.PlayerQuitEvent;
public class ActivityManager implements Listener {
private static final long ACTIVITY_DURATION_MS = 10_000;
private static final long ACTIVITY_DURATION_MS = 8_000;
// last time activity was detected
private final Map<Player, Map<Activity, Long>> activities = new HashMap<>();