From 7b5b8da0d2f9d7ad7e71a28869092b6a4f75fa4f Mon Sep 17 00:00:00 2001 From: James Seibel Date: Thu, 13 Mar 2025 21:17:01 -0500 Subject: [PATCH] decrease gen message timeout 5 -> 2 seconds done to make it consistently appear --- .../java/com/seibel/distanthorizons/core/config/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java index bf37f6e57..b483d5e1f 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java @@ -1281,7 +1281,7 @@ public class Config public static ConfigEntry generationProgressDisplayIntervalInSeconds = new ConfigEntry.Builder() .setChatCommandName("generation.logInterval") - .setMinDefaultMax(1, 5, 60 * 60 * 4) // max = 4 hours + .setMinDefaultMax(1, 2, 60 * 60 * 4) // max = 4 hours .comment("" + "How often should the distant generator progress be displayed? \n" + "")