From df50f1e3a504449bf9cb40518dfecc8c8d9efc1a Mon Sep 17 00:00:00 2001 From: embeddedt <42941056+embeddedt@users.noreply.github.com> Date: Sat, 7 Jan 2023 21:57:10 -0500 Subject: [PATCH] Turn off preloading of block classes When enabled, the parallel DeferredRegister system should yield the same result anyway. --- .../embeddedt/modernfix/core/config/ModernFixEarlyConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/embeddedt/modernfix/core/config/ModernFixEarlyConfig.java b/src/main/java/org/embeddedt/modernfix/core/config/ModernFixEarlyConfig.java index c9a24ba7..6acb7e85 100644 --- a/src/main/java/org/embeddedt/modernfix/core/config/ModernFixEarlyConfig.java +++ b/src/main/java/org/embeddedt/modernfix/core/config/ModernFixEarlyConfig.java @@ -29,7 +29,7 @@ public class ModernFixEarlyConfig { this.addMixinRule("bugfix.edge_chunk_not_saved", true); this.addMixinRule("perf.async_jei", true); this.addMixinRule("perf.thread_priorities", true); - this.addMixinRule("perf.preload_block_classes", true); + this.addMixinRule("perf.preload_block_classes", false); this.addMixinRule("perf.parallel_potentially_unsafe", false); this.addMixinRule("perf.parallel_blockstate_cache_rebuild", true); this.addMixinRule("safety", true);