diff --git a/worlds/grinch/Locations.py b/worlds/grinch/Locations.py index 7f734254..1cc7b328 100644 --- a/worlds/grinch/Locations.py +++ b/worlds/grinch/Locations.py @@ -183,11 +183,11 @@ grinch_locations = { "Twin-End Tuba in Submarine World": GrinchLocationData("Sleigh Room", "Sleigh Ride", 1603, [GrinchRamData(0x0101FB, binary_bit_pos=6)]), "GPS in Who Lake": GrinchLocationData("Sleigh Room", "Sleigh Ride", 1604, [GrinchRamData(0x0101FB, binary_bit_pos=5)]), # Mount Crumpit Locations -# "1st Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1700, [GrinchRamData(0x095343, value=1)]), -# "2nd Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1701, [GrinchRamData(0x095343, value=2)]), -# "3rd Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1702, [GrinchRamData(0x095343, value=3)]), -# "4th Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1703, [GrinchRamData(0x095343, value=4)]), -# "5th Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1704, [GrinchRamData(0x095343, value=5)]), + "1st Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1700, [GrinchRamData(0x095343, value=1)]), + "2nd Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1701, [GrinchRamData(0x095343, value=2)]), + "3rd Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1702, [GrinchRamData(0x095343, value=3)]), + "4th Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1703, [GrinchRamData(0x095343, value=4)]), + "5th Crate Squashed": GrinchLocationData("Mount Crumpit", "Mount Crumpit", 1704, [GrinchRamData(0x095343, value=5)]), } def grinch_locations_to_id() -> dict[str,int]: diff --git a/worlds/grinch/Rules.py b/worlds/grinch/Rules.py index 908a7e28..9bf590f3 100644 --- a/worlds/grinch/Rules.py +++ b/worlds/grinch/Rules.py @@ -494,21 +494,21 @@ rules_dict: dict[str,list[list[str]]] = { ], "GPS in Who Lake": [ ["Who Lake Vacuum Access", "Rotten Egg Launcher"] - # ], - # "1st Crate Squashed": [ - # [] - # ], - # "2nd Crate Squashed": [ - # [] - # ], - # "3rd Crate Squashed": [ - # [] - # ], - # "4th Crate Squashed": [ - # [] - # ], - # "5th Crate Squashed": [ - # [] + ], + "1st Crate Squashed": [ + [] + ], + "2nd Crate Squashed": [ + [] + ], + "3rd Crate Squashed": [ + [] + ], + "4th Crate Squashed": [ + [] + ], + "5th Crate Squashed": [ + [] ] }