From c0e90ddb33b4491f3d0b6650fa5713c2b04fb956 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 9 Oct 2020 17:25:48 +0100 Subject: [PATCH] increase interval of progress notify --- .../main/java/com/plotsquared/core/configuration/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index 443c0230c..d96a33025 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -537,7 +537,7 @@ public class Settings extends Config { @Comment("Notify progress of the queue to the player or console.") public static boolean NOTIFY_PROGRESS = true; @Comment("Interval in ms to notify player or console of progress.") - public static int NOTIFY_INTERVAL = 1000; + public static int NOTIFY_INTERVAL = 5000; @Comment({"Time to wait in ms before beginning to notify player or console of progress.", "Prevent needless notification of progress for short queues."}) public static int NOTIFY_WAIT = 5000;