diff --git a/worlds/noita/locations.py b/worlds/noita/locations.py index 01801b15..926a502f 100644 --- a/worlds/noita/locations.py +++ b/worlds/noita/locations.py @@ -118,11 +118,7 @@ location_region_mapping: Dict[str, Dict[str, LocationData]] = { "Mines Chest": LocationData(110046, LocationFlag.main_path, "chest"), "Mines Pedestal": LocationData(110066, LocationFlag.main_path, "pedestal"), }, - # Collapsed Mines is a very small area, combining it with the Mines. Leaving this here in case we change our minds. - # "Collapsed Mines": { - # "Collapsed Mines Chest": LocationData(110086, LocationFlag.main_path, "chest"), - # "Collapsed Mines Pedestal": LocationData(110106, LocationFlag.main_path, "pedestal"), - # }, + # Collapsed Mines is a very small area, combining it with the Mines. Leaving this here as a reminder "Ancient Laboratory": { "Ylialkemisti": LocationData(110656, LocationFlag.side_path, "boss"), }, @@ -190,7 +186,9 @@ location_region_mapping: Dict[str, Dict[str, LocationData]] = { "Unohdettu": LocationData(110653, LocationFlag.main_world, "boss"), "Snow Chasm Orb": LocationData(110667, LocationFlag.main_world, "orb"), }, - "Deep Underground": { + "Meat Realm": { + "Meat Realm Chest": LocationData(110086, LocationFlag.main_world, "chest"), + "Meat Realm Pedestal": LocationData(110106, LocationFlag.main_world, "pedestal"), "Limatoukka": LocationData(110647, LocationFlag.main_world, "boss"), }, "West Meat Realm": { diff --git a/worlds/noita/options.py b/worlds/noita/options.py index 3600c0ca..f2ccbfbc 100644 --- a/worlds/noita/options.py +++ b/worlds/noita/options.py @@ -6,7 +6,7 @@ class PathOption(Choice): """Choose where you would like Hidden Chest and Pedestal checks to be placed. Main Path includes the main 7 biomes you typically go through to get to the final boss. Side Path includes the Lukki Lair and Fungal Caverns. 9 biomes total. - Main World includes the full world (excluding parallel worlds). 14 biomes total. + Main World includes the full world (excluding parallel worlds). 15 biomes total. Note: The Collapsed Mines have been combined into the Mines as the biome is tiny.""" display_name = "Path Option" option_main_path = 1 diff --git a/worlds/noita/regions.py b/worlds/noita/regions.py index 8ea8a41e..a556b102 100644 --- a/worlds/noita/regions.py +++ b/worlds/noita/regions.py @@ -109,7 +109,7 @@ noita_connections: Dict[str, List[str]] = { "Temple of the Art Holy Mountain": ["Temple of the Art"], "Temple of the Art": ["Laboratory Holy Mountain", "The Tower", "Wizards' Den"], "Wizards' Den": ["Powerplant"], - "Powerplant": ["Deep Underground"], + "Powerplant": ["Meat Realm"], ### "Laboratory Holy Mountain": ["The Laboratory"],