diff --git a/worlds/wargroove2/Regions.py b/worlds/wargroove2/Regions.py index 0a15e28a4f84..30ac4caac781 100644 --- a/worlds/wargroove2/Regions.py +++ b/worlds/wargroove2/Regions.py @@ -1,5 +1,5 @@ from BaseClasses import Region, Entrance -from worlds.wargroove2.Levels import first_level, region_names, \ +from .Levels import first_level, region_names, \ FINAL_LEVEL_1, FINAL_LEVEL_2, FINAL_LEVEL_3, FINAL_LEVEL_4 from typing import TYPE_CHECKING if TYPE_CHECKING: diff --git a/worlds/wargroove2/Rules.py b/worlds/wargroove2/Rules.py index c0b96a7ff7ba..3c49cc75913b 100644 --- a/worlds/wargroove2/Rules.py +++ b/worlds/wargroove2/Rules.py @@ -1,6 +1,6 @@ from typing import TYPE_CHECKING from worlds.AutoWorld import LogicMixin -from worlds.wargroove2.Levels import first_level +from .Levels import first_level if TYPE_CHECKING: from . import Wargroove2World