From 05bf60abf7dcac53c4ec777410104e757a574e1b Mon Sep 17 00:00:00 2001 From: MarioSpore Date: Sat, 6 Sep 2025 17:26:38 -0400 Subject: [PATCH] Part 2 of fixing test_default_all_state_can_reach_everything to comply with banadium --- worlds/grinch/Regions.py | 8 ++++---- worlds/grinch/Rules.py | 12 ++++++++---- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/worlds/grinch/Regions.py b/worlds/grinch/Regions.py index f2bc1235..2b325b6a 100644 --- a/worlds/grinch/Regions.py +++ b/worlds/grinch/Regions.py @@ -83,9 +83,9 @@ def connect_regions(world: "GrinchWorld"): grinchconnect(world, "Mount Crumpit", "Who Dump") grinchconnect(world, "Mount Crumpit", "Who Lake") grinchconnect(world, "Mount Crumpit", "Sleigh Room") - # grinchconnect(world, "Mount Crumpit", "Spin N' Win Supadow") - # grinchconnect(world, "Mount Crumpit", "Dankamania Supadow") - # grinchconnect(world, "Mount Crumpit", "The Copter Race Contest Supadow") + grinchconnect(world, "Mount Crumpit", "Spin N' Win Supadow") + grinchconnect(world, "Mount Crumpit", "Dankamania Supadow") + grinchconnect(world, "Mount Crumpit", "The Copter Race Contest Supadow") grinchconnect(world, "Whoville", "Post Office") grinchconnect(world, "Whoville", "City Hall") grinchconnect(world, "Whoville", "Countdown to X-Mas Clock Tower") @@ -98,4 +98,4 @@ def connect_regions(world: "GrinchWorld"): grinchconnect(world, "Who Lake", "Scout's Hut") grinchconnect(world, "Who Lake", "North Shore") grinchconnect(world, "North Shore", "Mayor's Villa") - # grinchconnect(world, "Sleigh Room", "Bike Race") + grinchconnect(world, "Sleigh Room", "Bike Race") diff --git a/worlds/grinch/Rules.py b/worlds/grinch/Rules.py index c54448ab..997bfac4 100644 --- a/worlds/grinch/Rules.py +++ b/worlds/grinch/Rules.py @@ -560,19 +560,23 @@ access_rules_dict: dict[str,list[list[str]]] = { ["Sleigh Room Key"] ], "Spin N' Win Supadow": [ - ["Spin N' Win Door Unlock"], + [] + # ["Spin N' Win Door Unlock"], # ["Progressive Supadow Door Unlock"] ], "Dankamania Supadow": [ - ["Dankamania Door Unlock"], + [] + # ["Dankamania Door Unlock"], # ["Progressive Supadow Door Unlock: 2"] ], "The Copter Race Contest Supadow": [ - ["The Copter Race Contest Door Unlock"], + [] + # ["The Copter Race Contest Door Unlock"], # ["Progressive Supadow Door Unlock: 3"] ], "Bike Race": [ - ["Bike Race Access"], + [] + # ["Bike Race Access"], # ["Progressive Supadow Door Unlock: 4"] ] } \ No newline at end of file