LttP: fix import mistake
This commit is contained in:
parent
baa7992a7a
commit
3fa28a3fdb
|
@ -12,7 +12,7 @@ from .Items import as_dict_item_table, item_name_groups, item_table
|
||||||
from .Regions import lookup_name_to_id, create_regions, mark_light_world_regions
|
from .Regions import lookup_name_to_id, create_regions, mark_light_world_regions
|
||||||
from .Rules import set_rules
|
from .Rules import set_rules
|
||||||
from .ItemPool import generate_itempool, difficulties
|
from .ItemPool import generate_itempool, difficulties
|
||||||
from .Shops import create_shops
|
from .Shops import create_shops, ShopSlotFill
|
||||||
from .Dungeons import create_dungeons
|
from .Dungeons import create_dungeons
|
||||||
from .Rom import LocalRom, patch_rom, patch_race_rom, patch_enemizer, apply_rom_settings, get_hash_string
|
from .Rom import LocalRom, patch_rom, patch_race_rom, patch_enemizer, apply_rom_settings, get_hash_string
|
||||||
import Patch
|
import Patch
|
||||||
|
@ -231,7 +231,7 @@ class ALTTPWorld(World):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def stage_post_fill(cls, world):
|
def stage_post_fill(cls, world):
|
||||||
Shops.ShopSlotFill(world)
|
ShopSlotFill(world)
|
||||||
|
|
||||||
def generate_output(self, output_directory: str):
|
def generate_output(self, output_directory: str):
|
||||||
world = self.world
|
world = self.world
|
||||||
|
|
Loading…
Reference in New Issue