mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-04-17 10:23:31 -07:00
move LttP create_regions and set_rules to AutoWorld
This commit is contained in:
@@ -82,13 +82,16 @@ class World(metaclass=AutoWorldRegister):
|
||||
self.world = world
|
||||
self.player = player
|
||||
|
||||
# overwritable methods that get called by Main.py, sorted by execution order
|
||||
# overridable methods that get called by Main.py, sorted by execution order
|
||||
def generate_early(self):
|
||||
pass
|
||||
|
||||
def create_regions(self):
|
||||
pass
|
||||
|
||||
def create_items(self):
|
||||
pass
|
||||
|
||||
def set_rules(self):
|
||||
pass
|
||||
|
||||
@@ -100,7 +103,7 @@ class World(metaclass=AutoWorldRegister):
|
||||
If you need any last-second randomization, use MultiWorld.slot_seeds[slot] instead."""
|
||||
pass
|
||||
|
||||
def fill_slot_data(self):
|
||||
def fill_slot_data(self) -> dict:
|
||||
"""Fill in the slot_data field in the Connected network package."""
|
||||
return {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user