From 1e3b20a67238b9c06008422005fd96faa2cdab8d Mon Sep 17 00:00:00 2001 From: James Seibel Date: Fri, 27 Dec 2024 08:47:03 -0600 Subject: [PATCH] Increase default thread preset LOW -> BALANCED --- .../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 b22fa91a4..2172f6aa1 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 @@ -88,7 +88,7 @@ public class Config public static ConfigEntry threadPresetSetting = new ConfigEntry.Builder() .setServersideShortName("threadPreset") - .set(EDhApiThreadPreset.LOW_IMPACT) // the default value is set via the listener when accessed + .set(EDhApiThreadPreset.BALANCED) // the default value is set via the listener when accessed .comment("" + "Changing this setting will modify a number of different settings that will change \n" + "the load that Distant Horizons is allowed to put on your CPU. \n"