Skip to content

Commit 7f9504b

Browse files
committed
Merge "Make BGS and Giant's Knife Advancement Items for Logic Consideration" (OoTRandomizer#2475)
2 parents ad46d9f + 6b616ec commit 7f9504b

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

Hints.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,6 @@ def get_important_check_hint(spoiler: Spoiler, world: World, checked: dict[HintA
11811181
and not location.item.name == 'Triforce Piece'
11821182
and not (location.name == 'Song from Impa' and 'Zeldas Letter' in world.settings.starting_items and 'Zeldas Letter' not in world.settings.shuffle_child_trade)
11831183
# Special cases where the item is only considered major for important checks hints
1184-
or location.item.name == 'Biggoron Sword'
11851184
or location.item.name == 'Double Defense'
11861185
# Handle make keys not in own dungeon major items
11871186
or (location.item.type in ('SmallKey', 'SmallKeyRing') and not (world.settings.shuffle_smallkeys == 'dungeon' or world.settings.shuffle_smallkeys == 'vanilla'))

ItemList.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ class GetItemId(IntEnum):
363363
'Eyedrops': ('Item', True, GetItemId.GI_EYE_DROPS, {'trade': True}),
364364
'Claim Check': ('Item', True, GetItemId.GI_CLAIM_CHECK, {'trade': True}),
365365
'Kokiri Sword': ('Item', True, GetItemId.GI_SWORD_KOKIRI, None),
366-
'Giants Knife': ('Item', None, GetItemId.GI_SWORD_KNIFE, None),
366+
'Giants Knife': ('Item', True, GetItemId.GI_SWORD_KNIFE, None),
367367
'Deku Shield': ('Item', None, GetItemId.GI_SHIELD_DEKU, None),
368368
'Hylian Shield': ('Item', None, GetItemId.GI_SHIELD_HYLIAN, None),
369369
'Mirror Shield': ('Item', True, GetItemId.GI_SHIELD_MIRROR, None),
@@ -394,7 +394,7 @@ class GetItemId(IntEnum):
394394
'Gerudo Mask': ('Item', None, GetItemId.GI_MASK_GERUDO, {'trade': True, 'object': 0x0152}),
395395
'Rupees (50)': ('Item', None, GetItemId.GI_RUPEE_PURPLE, {'junk': 1}),
396396
'Rupees (200)': ('Item', None, GetItemId.GI_RUPEE_GOLD, {'junk': 0}),
397-
'Biggoron Sword': ('Item', None, GetItemId.GI_SWORD_BIGGORON, None),
397+
'Biggoron Sword': ('Item', True, GetItemId.GI_SWORD_BIGGORON, None),
398398
'Fire Arrows': ('Item', True, GetItemId.GI_ARROW_FIRE, None),
399399
'Ice Arrows': ('Item', True, GetItemId.GI_ARROW_ICE, None),
400400
'Blue Fire Arrows': ('Item', True, GetItemId.GI_ARROW_ICE, None),

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '8.3.63'
1+
__version__ = '8.3.64'
22

33
# This is a supplemental version number for branches based off of main dev.
44
supplementary_version = 0

0 commit comments

Comments
 (0)