Aquaria: Fixing itemlink not working (#4473)
This commit is contained in:
parent
93e8613da7
commit
4cb8fa3cdd
|
@ -93,7 +93,7 @@ class AquariaWorld(World):
|
||||||
options: AquariaOptions
|
options: AquariaOptions
|
||||||
"Every options of the world"
|
"Every options of the world"
|
||||||
|
|
||||||
regions: AquariaRegions
|
regions: AquariaRegions | None
|
||||||
"Used to manage Regions"
|
"Used to manage Regions"
|
||||||
|
|
||||||
exclude: List[str]
|
exclude: List[str]
|
||||||
|
@ -101,10 +101,17 @@ class AquariaWorld(World):
|
||||||
def __init__(self, multiworld: MultiWorld, player: int):
|
def __init__(self, multiworld: MultiWorld, player: int):
|
||||||
"""Initialisation of the Aquaria World"""
|
"""Initialisation of the Aquaria World"""
|
||||||
super(AquariaWorld, self).__init__(multiworld, player)
|
super(AquariaWorld, self).__init__(multiworld, player)
|
||||||
self.regions = AquariaRegions(multiworld, player)
|
self.regions = None
|
||||||
self.ingredients_substitution = []
|
self.ingredients_substitution = []
|
||||||
self.exclude = []
|
self.exclude = []
|
||||||
|
|
||||||
|
def generate_early(self) -> None:
|
||||||
|
"""
|
||||||
|
Run before any general steps of the MultiWorld other than options. Useful for getting and adjusting option
|
||||||
|
results and determining layouts for entrance rando etc. start inventory gets pushed after this step.
|
||||||
|
"""
|
||||||
|
self.regions = AquariaRegions(self.multiworld, self.player)
|
||||||
|
|
||||||
def create_regions(self) -> None:
|
def create_regions(self) -> None:
|
||||||
"""
|
"""
|
||||||
Create every Region in `regions`
|
Create every Region in `regions`
|
||||||
|
|
Loading…
Reference in New Issue