diff --git a/worlds/satisfactory/GameLogic.py b/worlds/satisfactory/GameLogic.py index 7b6e5d559e..09aaeb05ee 100644 --- a/worlds/satisfactory/GameLogic.py +++ b/worlds/satisfactory/GameLogic.py @@ -623,7 +623,7 @@ class GameLogic: "Power Storage": Building("Power Storage", ("Wire", "Modular Frame", "Stator"), can_produce=False), "Foundation": Building("Foundation", ("Iron Plate", "Concrete"), can_produce=False), "Walls Orange": Building("Walls Orange", ("Iron Plate", "Concrete"), can_produce=False), - "Space Elevator": Building("Space Elevator", ("Concrete", "Iron Plate", "Iron Rod", "Wire"), can_produce=False, implicitly_unlocked=True), + "Space Elevator": Building("Space Elevator", ("Concrete", "Iron Plate", "Iron Rod", "Wire"), can_produce=False), #1.0 "Converter": Building("Converter", ("Fused Modular Frame", "Cooling System", "Radio Control Unit", "SAM Fluctuator"), PowerInfrastructureLevel.Complex), diff --git a/worlds/satisfactory/Items.py b/worlds/satisfactory/Items.py index 942c29b17b..998a086376 100644 --- a/worlds/satisfactory/Items.py +++ b/worlds/satisfactory/Items.py @@ -630,7 +630,7 @@ class Items: "Customizer: Carbon Steel Finish": ItemData(G.Customizer, 1338772, C.filler, 0), "Customizer: Caterium Paint Finish": ItemData(G.Customizer, 1338773, C.filler, 0), - #1338774 - 1338799 Reserved for Cosmetics + #1338776 - 1338799 Reserved for Cosmetics # Transports 1338800 - 1338899 # Drones (including Drone) diff --git a/worlds/satisfactory/Locations.py b/worlds/satisfactory/Locations.py index 8f8d46ab1e..dff93ff1a6 100644 --- a/worlds/satisfactory/Locations.py +++ b/worlds/satisfactory/Locations.py @@ -270,7 +270,7 @@ class Locations(): MamSlot("Alien Technology", "Production Amplifier", 1338591), MamSlot("Alien Technology", "Power Augmenter", 1338592), # 1338593 Alien Power Matrix - MamSlot("Quartz", "Material Resonance Screening", 1338594), + MamSlot("Quartz", "Material Resonance Screening", 1338594), # 1.1 # 1338600 - 1338699 - Harddrives - Harddrives ShopSlot(self.state_logic, 1, 3, 1338700), ShopSlot(self.state_logic, 2, 3, 1338701), diff --git a/worlds/satisfactory/__init__.py b/worlds/satisfactory/__init__.py index afc0c4cb69..7e8cf1f05e 100644 --- a/worlds/satisfactory/__init__.py +++ b/worlds/satisfactory/__init__.py @@ -23,6 +23,7 @@ class SatisfactoryWorld(World): topology_present = False web = SatisfactoryWebWorld() origin_region_name = "Overworld" + required_client_version = (0, 6, 0) game_logic: ClassVar[GameLogic] = GameLogic() state_logic: StateLogic