Enable registry_event_progress by default on 1.21

This commit is contained in:
embeddedt 2025-04-29 18:31:43 -04:00 committed by DerCommander323
parent c035b6487e
commit 5d57200c11

View File

@ -184,7 +184,7 @@ public class ModernFixEarlyConfig {
.put("mixin.feature.log_stdout_in_log_files", true)
.put("mixin.devenv", isDevEnv)
.putConditionally(() -> !isFabric, "mixin.bugfix.fix_config_crashes", true)
.putConditionally(() -> !isFabric, "mixin.feature.registry_event_progress", false)
.putConditionally(() -> !isFabric, "mixin.feature.registry_event_progress", true)
.putConditionally(() -> isFabric, "mixin.perf.clear_fabric_mapping_tables", false)
.build();