We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad281c9 commit 5b97284Copy full SHA for 5b97284
worlds/oot/Cosmetics.py
@@ -769,7 +769,7 @@ def patch_instrument(rom, ootworld, symbols):
769
770
def patch_cosmetics(ootworld, rom):
771
# Use the world's slot seed for cosmetics
772
- random.seed(ootworld.multiworld.per_slot_randoms[ootworld.player])
+ random.seed(ootworld.multiworld.per_slot_randoms[ootworld.player].random())
773
774
# try to detect the cosmetic patch data format
775
versioned_patch_set = None
worlds/oot/Items.py
@@ -94,7 +94,7 @@ def dungeonitem(self) -> bool:
94
'Eyedrops': ('Item', True, 0x25, {'trade': True}),
95
'Claim Check': ('Item', True, 0x26, {'trade': True}),
96
'Kokiri Sword': ('Item', True, 0x27, None),
97
- 'Giants Knife': ('Item', None, 0x28, None),
+ 'Giants Knife': ('Item', True, 0x28, None),
98
'Deku Shield': ('Item', None, 0x29, None),
99
'Hylian Shield': ('Item', None, 0x2A, None),
100
'Mirror Shield': ('Item', True, 0x2B, None),
@@ -124,7 +124,7 @@ def dungeonitem(self) -> bool:
124
'Gerudo Mask': ('Item', None, 0x53, None),
125
'Rupees (50)': ('Item', None, 0x55, {'junk': 1}),
126
'Rupees (200)': ('Item', None, 0x56, {'junk': 0}),
127
- 'Biggoron Sword': ('Item', None, 0x57, None),
+ 'Biggoron Sword': ('Item', True, 0x57, None),
128
'Fire Arrows': ('Item', True, 0x58, None),
129
'Ice Arrows': ('Item', True, 0x59, None),
130
'Light Arrows': ('Item', True, 0x5A, None),
0 commit comments