From 88d066eb3885ea675ef02f7e26cfbbed01078a3f Mon Sep 17 00:00:00 2001 From: Kompreya Date: Sat, 30 Mar 2024 12:19:32 -0400 Subject: [PATCH] "Disable Narration" default cfg change Narration is a vanilla accessibility option that allows for those who need it to enable an audio screen reader while playing the game. The UT option "Disable Narration" completely disables this option, preventing users from enabling it and toggling through its options (Shows "Not Available") The current default option is "true", which means if a modpack dev includes UT in a modpack and does not switch this option to "false", then this option remains inaccessible to players, potentially preventing those who need this accessibility option from being able to fully enjoy the game. By changing the default option to "false", modpack devs will have to consciously and deliberately disable it. Otherwise, it remains accessible to players. --- .../mod/acgaming/universaltweaks/config/UTConfigTweaks.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/mod/acgaming/universaltweaks/config/UTConfigTweaks.java b/src/main/java/mod/acgaming/universaltweaks/config/UTConfigTweaks.java index 849c9437..d098fc95 100644 --- a/src/main/java/mod/acgaming/universaltweaks/config/UTConfigTweaks.java +++ b/src/main/java/mod/acgaming/universaltweaks/config/UTConfigTweaks.java @@ -1225,7 +1225,7 @@ public static class MiscCategory @Config.RequiresMcRestart @Config.Name("Disable Narrator") @Config.Comment("Disables the narrator functionality entirely") - public boolean utDisableNarratorToggle = true; + public boolean utDisableNarratorToggle = false; @Config.RequiresMcRestart @Config.Name("End Portal Parallax") @@ -1833,4 +1833,4 @@ public static void onConfigChanged(ConfigChangedEvent.OnConfigChangedEvent event } } } -} \ No newline at end of file +}