From 955d1c2875b775b9bc5a20d4269144b5e4f9d5b4 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 03:21:01 +0100 Subject: [PATCH] Fix ganon's silvers hint with progressive bows --- Rom.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Rom.py b/Rom.py index a905951b..f6b9e0e4 100644 --- a/Rom.py +++ b/Rom.py @@ -1516,14 +1516,11 @@ def write_strings(rom, world, player): if distinguished_prog_bow_loc: prog_bow_locs.remove(distinguished_prog_bow_loc) silverarrow_hint = (' %s?' % hint_text(distinguished_prog_bow_loc).replace('Ganon\'s', 'my')) - tt['ganon_phase_3_no_silvers_alt'] = 'Did you find the silver arrows%s' % silverarrow_hint + tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint if any(prog_bow_locs): silverarrow_hint = (' %s?' % hint_text(random.choice(prog_bow_locs)).replace('Ganon\'s', 'my')) - tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint - - - silverarrow_hint = (' %s?' % hint_text(silverarrows[0]).replace('Ganon\'s', 'my')) if silverarrows else '?\nI think not!' + tt['ganon_phase_3_no_silvers_alt'] = 'Did you find the silver arrows%s' % silverarrow_hint crystal5 = world.find_items('Crystal 5', player)[0]