diff --git a/worlds/am2r/regions.py b/worlds/am2r/regions.py index 110d19bcd92d..2735fa881cf6 100644 --- a/worlds/am2r/regions.py +++ b/worlds/am2r/regions.py @@ -123,7 +123,7 @@ def create_regions_and_locations(world: MultiWorld, player: int): connect(world, player, "Hydro Station", "Inner Hydro Station", lambda state: state.has("Screw Attack", player) or logic.AM2R_can_bomb(state)) connect(world, player, "Inner Hydro Station", "Hydro Station", lambda state: state.has("Screw Attack", player) or logic.AM2R_can_bomb(state)) - connect(world, player, "Industrial Complex Nest", "Pre Industrial Complex", lambda state: (state.has("Speed Booster", player) and state.has("Hi Jump")) or logic.AM2R_can_bomb(state)), + connect(world, player, "Industrial Complex Nest", "Pre Industrial Complex", lambda state: (state.has("Speed Booster", player) and state.has("Hi Jump", player)) or logic.AM2R_can_bomb(state)), connect(world, player, "Pre Industrial Complex", "Industrial Complex Nest", lambda state: state.has("Speed Booster", player) or logic.AM2R_can_bomb(state)), connect(world, player, "Pre Industrial Complex", "Industrial Complex"), diff --git a/worlds/am2r/rules.py b/worlds/am2r/rules.py index 6807983f0939..8446f11cc187 100644 --- a/worlds/am2r/rules.py +++ b/worlds/am2r/rules.py @@ -1,7 +1,5 @@ -import itertools -from typing import Union from BaseClasses import MultiWorld, CollectionState -from .options import MetroidsRequired, LocationSettings, get_option_value +from .options import get_option_value class AM2RLogic: