From 0733775f2cd02b17c984ced54cea9a00dda72549 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 26 Feb 2023 10:15:40 +0100 Subject: [PATCH] Subnautica: Allow either utility room for progression --- worlds/subnautica/Items.py | 7 +++---- worlds/subnautica/__init__.py | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/worlds/subnautica/Items.py b/worlds/subnautica/Items.py index a5ccc1fb..cf1f8ed2 100644 --- a/worlds/subnautica/Items.py +++ b/worlds/subnautica/Items.py @@ -223,7 +223,7 @@ item_table: Dict[int, ItemDict] = { 'name': 'Observatory', 'tech_type': 'BaseObservatory'}, 35053: {'classification': ItemClassification.progression, - 'count': 2, + 'count': 1, 'name': 'Multipurpose Room', 'tech_type': 'BaseRoom'}, 35054: {'classification': ItemClassification.useful, @@ -338,12 +338,11 @@ item_table: Dict[int, ItemDict] = { 'count': 1, 'name': 'Ultra High Capacity Tank', 'tech_type': 'HighCapacityTank'}, - # these currently unlock through some special sauce in Subnautica, unlike any established other - # keeping here for later 35082: {'classification': ItemClassification.progression, - 'count': 0, + 'count': 1, 'name': 'Large Room', 'tech_type': 'BaseLargeRoom'}, + # awarded with their rooms, keeping that as-is as they're cosmetic 35083: {'classification': ItemClassification.filler, 'count': 0, 'name': 'Large Room Glass Dome', diff --git a/worlds/subnautica/__init__.py b/worlds/subnautica/__init__.py index 53c04fb3..b786bcc4 100644 --- a/worlds/subnautica/__init__.py +++ b/worlds/subnautica/__init__.py @@ -42,7 +42,7 @@ class SubnauticaWorld(World): option_definitions = Options.options data_version = 9 - required_client_version = (0, 3, 8) + required_client_version = (0, 3, 9) creatures_to_scan: List[str]