From 613c4c744a813a04df269bcc5237283165fc487d Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Sun, 2 Feb 2025 17:53:43 +1000 Subject: [PATCH] Change default config value --- .../me/cortex/voxy/client/config/VoxyConfigScreenFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/cortex/voxy/client/config/VoxyConfigScreenFactory.java b/src/main/java/me/cortex/voxy/client/config/VoxyConfigScreenFactory.java index 7181e0cf..3d4ffdd9 100644 --- a/src/main/java/me/cortex/voxy/client/config/VoxyConfigScreenFactory.java +++ b/src/main/java/me/cortex/voxy/client/config/VoxyConfigScreenFactory.java @@ -72,7 +72,7 @@ public class VoxyConfigScreenFactory implements ModMenuApi { .setDefaultValue((int) DEFAULT.subDivisionSize) .build()); - category.addEntry(entryBuilder.startIntSlider(Text.translatable("voxy.config.general.lruCacheSize"), config.secondaryLruCacheSize, 16, 1<<13) + category.addEntry(entryBuilder.startIntSlider(Text.translatable("voxy.config.general.lruCacheSize"), config.secondaryLruCacheSize, 16, 1<<10) .setTooltip(Text.translatable("voxy.config.general.lruCacheSize.tooltip")) .setSaveConsumer(val ->{if (config.secondaryLruCacheSize != val) reload(); config.secondaryLruCacheSize = val;}) .setDefaultValue(DEFAULT.secondaryLruCacheSize)