From cb3db8ae163db62ec963f0fae65c6cc129dcad6b Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Tue, 22 Mar 2022 12:34:23 -0500 Subject: [PATCH] ALttP: fix ROM crash when loading mail/shield overflow sprite in hard/expert --- worlds/alttp/ItemPool.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/worlds/alttp/ItemPool.py b/worlds/alttp/ItemPool.py index f20379c8..782cfade 100644 --- a/worlds/alttp/ItemPool.py +++ b/worlds/alttp/ItemPool.py @@ -128,7 +128,7 @@ difficulties = { progressiveshield=['Progressive Shield'] * 3, basicshield=['Blue Shield', 'Red Shield', 'Red Shield'], progressivearmor=['Progressive Mail'] * 2, - basicarmor=['Progressive Mail'] * 2, # neither will count + basicarmor=['Blue Mail', 'Blue Mail'] * 2, swordless=['Rupees (20)'] * 4, progressivemagic=['Magic Upgrade (1/2)', 'Rupees (300)'], basicmagic=['Magic Upgrade (1/2)', 'Rupees (300)'], @@ -158,10 +158,9 @@ difficulties = { bottle_count=4, same_bottle=False, progressiveshield=['Progressive Shield'] * 3, - basicshield=['Progressive Shield'] * 3, - # only the first one will upgrade, making this equivalent to two blue shields + basicshield=['Blue Shield', 'Blue Shield', 'Blue Shield'], progressivearmor=['Progressive Mail'] * 2, # neither will count - basicarmor=['Progressive Mail'] * 2, # neither will count + basicarmor=['Rupees (20)'] * 2, swordless=['Rupees (20)'] * 4, progressivemagic=['Magic Upgrade (1/2)', 'Rupees (300)'], basicmagic=['Magic Upgrade (1/2)', 'Rupees (300)'],