From 8dffd87bee3081aa16cdcebf87252a062ad40b21 Mon Sep 17 00:00:00 2001 From: alwaysintreble Date: Sun, 27 Nov 2022 19:29:18 -0600 Subject: [PATCH] LttP: fix open pyramid settings parsing (#1253) * lttp: fix open pyramid settings prasing * accidentally left default changed when committing --- playerSettings.yaml | 4 ++-- worlds/alttp/Options.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/playerSettings.yaml b/playerSettings.yaml index 194894b4..ee671862 100644 --- a/playerSettings.yaml +++ b/playerSettings.yaml @@ -120,8 +120,8 @@ A Link to the Past: open_pyramid: goal: 50 # Opens the pyramid if the goal requires you to kill Ganon, unless the goal is Slow Ganon or All Dungeons auto: 0 # Same as Goal, but also is closed if holes are shuffled and ganon is part of the shuffle pool - yes: 0 # Pyramid hole is always open. Ganon's vulnerable condition is still required before he can he hurt - no: 0 # Pyramid hole is always closed until you defeat Agahnim atop Ganon's Tower + open: 0 # Pyramid hole is always open. Ganon's vulnerable condition is still required before he can he hurt + closed: 0 # Pyramid hole is always closed until you defeat Agahnim atop Ganon's Tower triforce_pieces_mode: #Determine how to calculate the extra available triforce pieces. extra: 0 # available = triforce_pieces_extra + triforce_pieces_required percentage: 0 # available = (triforce_pieces_percentage /100) * triforce_pieces_required diff --git a/worlds/alttp/Options.py b/worlds/alttp/Options.py index de6c479b..b1cfbc67 100644 --- a/worlds/alttp/Options.py +++ b/worlds/alttp/Options.py @@ -39,8 +39,8 @@ class OpenPyramid(Choice): option_auto = 3 default = option_goal - alias_yes = option_open - alias_no = option_closed + alias_true = option_open + alias_false = option_closed def to_bool(self, world: MultiWorld, player: int) -> bool: if self.value == self.option_goal: