diff --git a/worlds/messenger/options.py b/worlds/messenger/options.py index 73adf4eb..1f76dba4 100644 --- a/worlds/messenger/options.py +++ b/worlds/messenger/options.py @@ -5,7 +5,7 @@ from schema import And, Optional, Or, Schema from Options import Accessibility, Choice, DeathLinkMixin, DefaultOnToggle, OptionDict, PerGameCommonOptions, \ PlandoConnections, Range, StartInventoryPool, Toggle, Visibility -from worlds.messenger.portals import CHECKPOINTS, PORTALS, SHOP_POINTS +from .portals import CHECKPOINTS, PORTALS, SHOP_POINTS class MessengerAccessibility(Accessibility): diff --git a/worlds/shorthike/Rules.py b/worlds/shorthike/Rules.py index 4a71ebd3..33741c6d 100644 --- a/worlds/shorthike/Rules.py +++ b/worlds/shorthike/Rules.py @@ -1,5 +1,6 @@ from worlds.generic.Rules import forbid_items_for_player, add_rule -from worlds.shorthike.Options import Goal, GoldenFeatherProgression, MinShopCheckLogic, ShopCheckLogic +from .Options import Goal, GoldenFeatherProgression, MinShopCheckLogic, ShopCheckLogic + def create_rules(self, location_table): multiworld = self.multiworld diff --git a/worlds/yugioh06/client_bh.py b/worlds/yugioh06/client_bh.py index 910eba7c..ecbe4811 100644 --- a/worlds/yugioh06/client_bh.py +++ b/worlds/yugioh06/client_bh.py @@ -5,7 +5,7 @@ from NetUtils import ClientStatus, NetworkItem import worlds._bizhawk as bizhawk from worlds._bizhawk.client import BizHawkClient -from worlds.yugioh06 import item_to_index +from . import item_to_index if TYPE_CHECKING: from worlds._bizhawk.context import BizHawkClientContext diff --git a/worlds/yugioh06/opponents.py b/worlds/yugioh06/opponents.py index 1746b565..68d7c288 100644 --- a/worlds/yugioh06/opponents.py +++ b/worlds/yugioh06/opponents.py @@ -3,8 +3,8 @@ from typing import Dict, List, NamedTuple, Optional, Union from BaseClasses import MultiWorld from worlds.generic.Rules import CollectionRule -from worlds.yugioh06 import item_to_index, tier_1_opponents, yugioh06_difficulty -from worlds.yugioh06.locations import special +from . import item_to_index, tier_1_opponents, yugioh06_difficulty +from .locations import special class OpponentData(NamedTuple):