Skip to content

Commit

Permalink
"Disable Narration" default cfg change
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Kompreya committed Mar 30, 2024
1 parent 89624ad commit 88d066e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -1833,4 +1833,4 @@ public static void onConfigChanged(ConfigChangedEvent.OnConfigChangedEvent event
}
}
}
}
}

0 comments on commit 88d066e

Please sign in to comment.