From 5fbcbb8eec306bdcbf05e082c8509c5f4582b279 Mon Sep 17 00:00:00 2001 From: FlySniper Date: Tue, 3 Sep 2024 11:08:06 -0400 Subject: [PATCH 1/2] Update worlds/wargroove2/Regions.py Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> --- worlds/wargroove2/Regions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: From 14eae241b9d7779ef9066219f4ecc4696a048d82 Mon Sep 17 00:00:00 2001 From: FlySniper Date: Tue, 3 Sep 2024 11:08:18 -0400 Subject: [PATCH 2/2] Update worlds/wargroove2/Rules.py Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> --- worlds/wargroove2/Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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