From 8b60a9e2f06c8bbdc1a0d67c4707786e9120282d Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Sun, 14 Nov 2021 06:55:32 -0600 Subject: [PATCH] OoT: Add display names to ER options --- worlds/oot/Options.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/worlds/oot/Options.py b/worlds/oot/Options.py index ee441410..43a69ea8 100644 --- a/worlds/oot/Options.py +++ b/worlds/oot/Options.py @@ -96,6 +96,7 @@ class StartingAge(Choice): class InteriorEntrances(Choice): """Shuffles interior entrances. "Simple" shuffles houses and Great Fairies; "All" includes Windmill, Link's House, Temple of Time, and Kak potion shop.""" + displayname = "Shuffle Interior Entrances" option_off = 0 option_simple = 1 option_all = 2 @@ -105,26 +106,32 @@ class InteriorEntrances(Choice): class GrottoEntrances(Toggle): """Shuffles grotto and grave entrances.""" + displayname = "Shuffle Grotto/Grave Entrances" class DungeonEntrances(Toggle): """Shuffles dungeon entrances, excluding Ganon's Castle. Opens Deku, Fire and BotW to both ages.""" + displayname = "Shuffle Dungeon Entrances" class OverworldEntrances(Toggle): """Shuffles overworld loading zones.""" + displayname = "Shuffle Overworld Entrances" class OwlDrops(Toggle): """Randomizes owl drops from Lake Hylia or Death Mountain Trail as child.""" + displayname = "Randomize Owl Drops" class WarpSongs(Toggle): """Randomizes warp song destinations.""" + displayname = "Randomize Warp Songs" class SpawnPositions(Toggle): """Randomizes the starting position on loading a save. Consistent between savewarps.""" + displayname = "Randomize Spawn Positions" class TriforceHunt(Toggle):