From f952ad5913fb291a0a3784ae3a7838ab58cc441a Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Thu, 9 Sep 2021 11:25:16 -0500 Subject: [PATCH] turn on guarantee_hint rule --- worlds/oot/Rules.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/oot/Rules.py b/worlds/oot/Rules.py index c63a9334..57cd6904 100644 --- a/worlds/oot/Rules.py +++ b/worlds/oot/Rules.py @@ -90,7 +90,7 @@ def set_rules(ootworld): world.get_location('Ganon', player).item_rule = lambda item: item.name == 'Triforce' # is_child = ootworld.parser.parse_rule('is_child') - # guarantee_hint = ootworld.parser.parse_rule('guarantee_hint') + guarantee_hint = ootworld.parser.parse_rule('guarantee_hint') for location in ootworld.get_locations(): if ootworld.shuffle_song_items == 'song': @@ -126,8 +126,8 @@ def set_rules(ootworld): # if location.type == 'HintStone' and ootworld.hints == 'mask': # location.add_rule(is_child) - # if location.name in ootworld.always_hints: - # location.add_rule(guarantee_hint) + if location.name in ootworld.always_hints: + add_rule(location, guarantee_hint) def create_shop_rule(location, parser):