Fix Sword and Shield item

This commit is contained in:
2026-05-14 23:52:59 -05:00
parent 84270544bf
commit 1ae9da59bb
5 changed files with 33 additions and 27 deletions

View File

@@ -1519,7 +1519,10 @@ class CollectionState(object):
if not item:
return
changed = False
if item.name.startswith('Progressive '):
if item.name == "Sword and Shield":
self.prog_items["Fighter Sword", item.player] += 1
self.prog_items["Blue Shield", item.player] += 1
elif item.name.startswith('Progressive '):
if 'Sword' in item.name:
if self.has('Golden Sword', item.player):
pass