From 56f8f9b176a02fc49c34253a5f34607fce71db7f Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Tue, 24 Jul 2018 19:22:47 -0400 Subject: [PATCH] Change index of Sahasrahla post item get text --- Rom.py | 5 ++--- Text.py | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Rom.py b/Rom.py index a086bd73..497c8a3c 100644 --- a/Rom.py +++ b/Rom.py @@ -1043,9 +1043,8 @@ def write_strings(rom, world): tt['bomb_shop_big_bomb'] = BombShop2_texts[random.randint(0, len(BombShop2_texts) - 1)] tt['pond_will_upgrade'] = PyramidFairy_texts[random.randint(0, len(PyramidFairy_texts) - 1)] - # unfortunate naming, but this is what shows after getting the green pendant item in rando - # regardless of having checked the icerod cave - tt['sahasrahla_have_boots_no_icerod'] = Sahasrahla2_texts[random.randint(0, len(Sahasrahla2_texts) - 1)] + # this is what shows after getting the green pendant item in rando + tt['sahasrahla_quest_have_master_sword'] = Sahasrahla2_texts[random.randint(0, len(Sahasrahla2_texts) - 1)] tt['blind_by_the_light'] = Blind_texts[random.randint(0, len(Blind_texts) - 1)] if world.goal in ['pedestal', 'triforcehunt']: diff --git a/Text.py b/Text.py index 09455d66..b40c5f48 100644 --- a/Text.py +++ b/Text.py @@ -1303,6 +1303,7 @@ class TextTable(object): 'sahasrahla_found', 'sahasrahla_have_boots_no_icerod', 'sahasrahla_bring_courage', + 'sahasrahla_quest_have_master_sword', 'shop_darkworld_enter', 'shop_first_time', 'shop_buy_shield',