Enable registry_event_progress by default on 1.21

This commit is contained in:
embeddedt 2025-04-29 18:31:43 -04:00
parent 2673ae46ae
commit 92e8234240
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

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();