From 2c5cb791a6dd736956ed652a6eab855687b68386 Mon Sep 17 00:00:00 2001 From: MarioSpore Date: Tue, 5 Aug 2025 17:00:27 -0400 Subject: [PATCH] GPS no longer required to goal, rest of sleigh parts needed for goaling according to speedrunning community --- worlds/grinch/Items.py | 2 +- worlds/grinch/Rules.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/grinch/Items.py b/worlds/grinch/Items.py index 0784a57e..a8a2102f 100644 --- a/worlds/grinch/Items.py +++ b/worlds/grinch/Items.py @@ -118,7 +118,7 @@ MISSION_ITEMS_TABLE: dict[str, GrinchItemData] = { SLEIGH_PARTS_TABLE: dict[str, GrinchItemData] = { "Exhaust Pipes": GrinchItemData("Sleigh Parts", 300, IC.progression_skip_balancing, [GrinchRamData(0x800101FB, binary_bit_pos=3), GrinchRamData(0x800100AA, binary_bit_pos=6)]), - "GPS": GrinchItemData("Sleigh Parts", 301, IC.progression_skip_balancing, + "GPS": GrinchItemData("Sleigh Parts", 301, IC.useful, [GrinchRamData(0x800101FB, binary_bit_pos=6), GrinchRamData(0x800100AA, binary_bit_pos=6)]), "Tires": GrinchItemData("Sleigh Parts", 302, IC.progression_skip_balancing, [GrinchRamData(0x800101FB, binary_bit_pos=5), GrinchRamData(0x800100AA, binary_bit_pos=6)]), diff --git a/worlds/grinch/Rules.py b/worlds/grinch/Rules.py index be531ef9..a20cff86 100644 --- a/worlds/grinch/Rules.py +++ b/worlds/grinch/Rules.py @@ -510,7 +510,7 @@ access_rules_dict: dict[str,list[list[str]]] = { ["Marine Mobile"] ], "Sleigh Room": [ - ["Exhaust Pipes", "GPS", "Tires", "Skis", "Twin-End Tuba"] + ["Exhaust Pipes", "Tires", "Skis", "Twin-End Tuba"] ], "Spin N' Win Supadow": [ ["Spin N' Win Door Unlock"],